diff options
author | friendica <info@friendica.com> | 2015-03-29 16:05:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-29 16:05:24 -0700 |
commit | b546f8d702157410a834000cc7a6aa621e78f427 (patch) | |
tree | 71dbbe2471783524af84f5fb21f4fa575e315247 /include/comanche.php | |
parent | 505e5e90b26fa398e08b6fcad266b7f0ac759bd2 (diff) | |
parent | 9ae9aedb15dfcb66f5bd9d866bdfb76309c81788 (diff) | |
download | volse-hubzilla-b546f8d702157410a834000cc7a6aa621e78f427.tar.gz volse-hubzilla-b546f8d702157410a834000cc7a6aa621e78f427.tar.bz2 volse-hubzilla-b546f8d702157410a834000cc7a6aa621e78f427.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'include/comanche.php')
-rw-r--r-- | include/comanche.php | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/include/comanche.php b/include/comanche.php index 71ffe99b8..62bfd0ddc 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -101,7 +101,7 @@ function comanche_parser(&$a, $s, $pass = 0) { } -function comanche_menu($name,$class = '') { +function comanche_menu($name, $class = '') { $channel_id = comanche_get_channel_id(); if($channel_id) { $m = menu_fetch($name,$channel_id, get_observer_hash()); @@ -111,20 +111,23 @@ function comanche_menu($name,$class = '') { function comanche_replace_region($match) { $a = get_app(); - if(array_key_exists($match[1], $a->page)) { + if (array_key_exists($match[1], $a->page)) { return $a->page[$match[1]]; } } /** - * @function comanche_get_channel_id() - * Returns the channel_id of the profile owner of the page, or the local_channel if there is no profile owner. - * Otherwise returns 0 - */ - + * @brief Returns the channel_id of the profile owner of the page. + * + * Returns the channel_id of the profile owner of the page, or the local_channel + * if there is no profile owner. Otherwise returns 0. + * + * @return channel_id + */ function comanche_get_channel_id() { $channel_id = ((is_array(get_app()->profile)) ? get_app()->profile['profile_uid'] : 0); - if((! $channel_id) && (local_channel())) + + if ((! $channel_id) && (local_channel())) $channel_id = local_channel(); return $channel_id; @@ -173,23 +176,26 @@ function comanche_webpage(&$a,$s) { } -// Widgets will have to get any operational arguments from the session, -// the global app environment, or config storage until we implement argument passing - - +/** + * Widgets will have to get any operational arguments from the session, the + * global app environment, or config storage until we implement argument passing + * + * @param string $name + * @param string $text + */ function comanche_widget($name, $text) { $vars = array(); $matches = array(); $cnt = preg_match_all("/\[var=(.*?)\](.*?)\[\/var\]/ism", $text, $matches, PREG_SET_ORDER); - if($cnt) { - foreach($matches as $mtch) { + if ($cnt) { + foreach ($matches as $mtch) { $vars[$mtch[1]] = $mtch[2]; } } $func = 'widget_' . trim($name); - if(function_exists($func)) + if (function_exists($func)) return $func($vars); } |