aboutsummaryrefslogtreecommitdiffstats
path: root/doc/faq_developers.bb
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2015-01-19 10:19:38 +1100
committerRedMatrix <info@friendica.com>2015-01-19 10:19:38 +1100
commit5d30565c665341e6a6a805684cee4d45c1d2fafe (patch)
treefd9b3ff875f7c22a671686d6325dd3da910c936e /doc/faq_developers.bb
parent39dad87adc9ea4449c5534e5b3a0fbcc77159a5c (diff)
parenta1ab658df1fc976954cbdd891343867b3ee64629 (diff)
downloadvolse-hubzilla-5d30565c665341e6a6a805684cee4d45c1d2fafe.tar.gz
volse-hubzilla-5d30565c665341e6a6a805684cee4d45c1d2fafe.tar.bz2
volse-hubzilla-5d30565c665341e6a6a805684cee4d45c1d2fafe.zip
Merge pull request #863 from einervonvielen/Fix_bbcode_toc_for_help_pages
Fixed bbode element toc for webpages
Diffstat (limited to 'doc/faq_developers.bb')
-rw-r--r--doc/faq_developers.bb7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/faq_developers.bb b/doc/faq_developers.bb
index 61843648a..010ef9b8a 100644
--- a/doc/faq_developers.bb
+++ b/doc/faq_developers.bb
@@ -1,8 +1,9 @@
[size=large][b]Frequently Asked Questions For Developers[/b][/size]
+[toc]
-[ul]
-[*][b]What does $a mean?[/b]
+
+[h3]What does $a mean?[/h3]
$a is a class defined in boot.php and passed all around Red Matrix as a global reference variable. It defines everything necessary for the Red Matrix application: Server variables, URL arguments, page structures, layouts, content, installed plugins, output device info, theme info, identity of the observer and (potential) page owner ...
We don't ever create more than one instance and always modify the elements of the single instance. The mechanics of this are somewhat tricky. If you have a function that is passed $a and needs to modify $a you need to declare it as a reference with '&' e.g.
@@ -24,7 +25,7 @@ function foo() {
get_app()->something = 'x';
}
[/code]
-[/ul]
+
#include doc/macros/main_footer.bb;