]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/scheme.php
Merge pull request #6209 from MrPetovan/task/move-config-to-php-array
[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 use Friendica\Core\PConfig;
21
22 function get_scheme_info($scheme)
23 {
24         $theme = get_app()->getCurrentTheme();
25         $themepath = 'view/theme/' . $theme . '/';
26         $scheme = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'scheme'));
27
28         $info = [
29                 'name' => $scheme,
30                 'description' => '',
31                 'author' => [],
32                 'version' => '',
33                 'overwrites' => []
34         ];
35
36         if (!is_file($themepath . 'scheme/' . $scheme . '.php')) return $info;
37
38         $f = file_get_contents($themepath . 'scheme/' . $scheme . '.php');
39
40         $r = preg_match('|/\*.*\*/|msU', $f, $m);
41
42         if ($r) {
43                 $ll = explode("\n", $m[0]);
44                 foreach ($ll as $l) {
45                         $l = trim($l, "\t\n\r */");
46                         if ($l != '') {
47                                 $values = array_map('trim', explode(':', $l, 2));
48                                 if (count($values) < 2) {
49                                         continue;
50                                 }
51                                 list($k, $v) = $values;
52                                 $k = strtolower($k);
53                                 if ($k == 'author') {
54                                         $r = preg_match('|([^<]+)<([^>]+)>|', $v, $m);
55                                         if ($r) {
56                                                 $info['author'][] = ['name' => $m[1], 'link' => $m[2]];
57                                         } else {
58                                                 $info['author'][] = ['name' => $v];
59                                         }
60                                 } elseif ($k == 'overwrites') {
61                                         $theme_settings = explode(',', str_replace(' ', '', $v));
62                                         foreach ($theme_settings as $key => $value) {
63                                                 $info['overwrites'][$value] = true;
64                                         }
65                                 } else {
66                                         if (array_key_exists($k, $info)) {
67                                                 $info[$k] = $v;
68                                         }
69                                 }
70                         }
71                 }
72         }
73
74         return $info;
75 }