]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/scheme.php
Added string creation
[friendica.git] / view / theme / frio / php / scheme.php
1 <?php
2
3 /**
4  * @brief: Get info header of the scheme
5  *
6  * This function parses the header of the schemename.php file for informations like
7  * Author, Description and Overwrites. Most of the code comes from the Addon::getInfo()
8  * function. We use this to get the variables which get overwritten through the scheme.
9  * All color variables which get overwritten through the theme have to be
10  * listed (comma separated) in the scheme header under Overwrites:
11  * This seems not to be the best solution. We need to investigate further.
12  *
13  * @param string $scheme Name of the scheme
14  * @return array With theme information
15  *    'author' => Author Name
16  *    'description' => Scheme description
17  *    'version' => Scheme version
18  *    'overwrites' => Variables which overwriting custom settings
19  */
20
21 use Friendica\Core\PConfig;
22
23 function get_scheme_info($scheme)
24 {
25         $theme = \get_app()->getCurrentTheme();
26         $themepath = 'view/theme/' . $theme . '/';
27         if (empty($scheme)) {
28                 $scheme = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'schema'));
29         }
30
31         $info = [
32                 'name' => $scheme,
33                 'description' => '',
34                 'author' => [],
35                 'version' => '',
36                 'overwrites' => []
37         ];
38
39         if (!is_file($themepath . 'scheme/' . $scheme . '.php')) return $info;
40
41         $f = file_get_contents($themepath . 'scheme/' . $scheme . '.php');
42
43         $r = preg_match('|/\*.*\*/|msU', $f, $m);
44
45         if ($r) {
46                 $ll = explode("\n", $m[0]);
47                 foreach ($ll as $l) {
48                         $l = trim($l, "\t\n\r */");
49                         if ($l != '') {
50                                 $values = array_map('trim', explode(':', $l, 2));
51                                 if (count($values) < 2) {
52                                         continue;
53                                 }
54                                 list($k, $v) = $values;
55                                 $k = strtolower($k);
56                                 if ($k == 'author') {
57                                         $r = preg_match('|([^<]+)<([^>]+)>|', $v, $m);
58                                         if ($r) {
59                                                 $info['author'][] = ['name' => $m[1], 'link' => $m[2]];
60                                         } else {
61                                                 $info['author'][] = ['name' => $v];
62                                         }
63                                 } elseif ($k == 'overwrites') {
64                                         $theme_settings = explode(',', str_replace(' ', '', $v));
65                                         foreach ($theme_settings as $key => $value) {
66                                                 $info['overwrites'][$value] = true;
67                                         }
68                                 } else {
69                                         if (array_key_exists($k, $info)) {
70                                                 $info[$k] = $v;
71                                         }
72                                 }
73                         }
74                 }
75         }
76
77         return $info;
78 }