From b69fca14e76a2f5db0cd0924fe5e7056e94771b1 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 26 Feb 2013 15:49:37 -0800 Subject: initial doco --- doc/html/classApp.html | 1661 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1661 insertions(+) create mode 100644 doc/html/classApp.html (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html new file mode 100644 index 000000000..ac0d1192f --- /dev/null +++ b/doc/html/classApp.html @@ -0,0 +1,1661 @@ + + + + + + +The Red Project: App Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 __construct ()
 
 get_baseurl ($ssl=false)
 
 set_baseurl ($url)
 
 get_hostname ()
 
 set_hostname ($h)
 
 set_path ($p)
 
 get_path ()
 
 set_account ($aid)
 
 get_account ()
 
 set_channel ($channel)
 
 get_channel ()
 
 set_observer ($xchan)
 
 get_observer ()
 
 set_perms ($perms)
 
 get_perms ()
 
 get_apps ()
 
 set_apps ($arr)
 
 set_groups ($g)
 
 get_groups ()
 
 set_widget ($title, $html, $location= 'aside')
 
 get_widgets ($location= '')
 
 set_pager_total ($n)
 
 set_pager_itemspage ($n)
 
 build_pagehead ()
 
 set_curl_code ($code)
 
 get_curl_code ()
 
 set_curl_headers ($headers)
 
 get_curl_headers ()
 
 get_template_engine ()
 
 set_template_engine ($engine= 'internal')
 
 get_template_ldelim ($engine= 'internal')
 
 get_template_rdelim ($engine= 'internal')
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Attributes

 $account = null
 
 $channel = null
 
 $observer = null
 
 $groups
 
 $language
 
 $module_loaded = false
 
 $query_string
 
 $config
 
 $page
 
 $profile
 
 $user
 
 $cid
 
 $contact
 
 $contacts
 
 $content
 
 $data = array()
 
 $error = false
 
 $cmd
 
 $argv
 
 $argc
 
 $module
 
 $pager
 
 $strings
 
 $hooks
 
 $timezone
 
 $interactive = true
 
 $plugins
 
 $identities
 
 $css_sources = array()
 
 $js_sources = array()
 
 $theme_info = array()
 
 $nav_sel
 
 $category
 
 $sourcename = ''
 
 $videowidth = 425
 
 $videoheight = 350
 
 $force_max_items = 0
 
 $theme_thread_allow = true
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Private Attributes

 $perms = null
 
 $widgets = array()
 
 $widgetlist = null
 
 $apps = array()
 
 $theme
 
 $ldelim
 
 $rdelim
 
 $scheme
 
 $hostname
 
 $baseurl
 
 $path
 
 $db
 
 $curl_code
 
 $curl_headers
 
 $cached_profile_image
 
 $cached_profile_picdate
 
+

Detailed Description

+

class: App

+

Our main application structure for the life of this page Primarily deals with the URL that got us here and tries to make some sense of it, and stores our page contents and config storage and anything else that might need to be passed around before we spit the page out.

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + +
App::__construct ()
+
+

Figure out if we are running at the top of a domain or in a sub-directory and adjust accordingly

+

Break the URL path into C style argc/argv style arguments for our modules. Given "http://example.com/module/arg1/arg2", $this->argc will be 3 (integer) and $this->argv will contain: [0] => 'module' [1] => 'arg1' [2] => 'arg2'

+

There will always be one argument. If provided a naked domain URL, $this->argv[0] is set to "home".

+

See if there is any page number information, and initialise pagination

+

Detect mobile devices

+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + +
App::build_pagehead ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_account ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_apps ()
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_baseurl ( $ssl = false)
+
+ +

Referenced by build_pagehead().

+ +
+
+ +
+
+ + + + + + + +
App::get_channel ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_curl_code ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_curl_headers ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_groups ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_hostname ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_observer ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_path ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_perms ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_template_engine ()
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_template_ldelim ( $engine = 'internal')
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_template_rdelim ( $engine = 'internal')
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_widgets ( $location = '')
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_account ( $aid)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_apps ( $arr)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_baseurl ( $url)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_channel ( $channel)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_curl_code ( $code)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_curl_headers ( $headers)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_groups ( $g)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_hostname ( $h)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_observer ( $xchan)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_pager_itemspage ( $n)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_pager_total ( $n)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_path ( $p)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_perms ( $perms)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_template_engine ( $engine = 'internal')
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
App::set_widget ( $title,
 $html,
 $location = 'aside' 
)
+
+ +
+
+

Member Data Documentation

+ +
+
+ + + + +
App::$account = null
+
+ +

Referenced by get_account().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$apps = array()
+
+private
+
+ +

Referenced by get_apps().

+ +
+
+ +
+
+ + + + +
App::$argc
+
+ +
+
+ +
+
+ + + + +
App::$argv
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$baseurl
+
+private
+
+ +

Referenced by get_baseurl().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$cached_profile_image
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$cached_profile_picdate
+
+private
+
+ +
+
+ +
+
+ + + + +
App::$category
+
+ +
+
+ +
+
+ + + + +
App::$channel = null
+
+ +

Referenced by get_channel(), and set_channel().

+ +
+
+ +
+
+ + + + +
App::$cid
+
+ +
+
+ +
+
+ + + + +
App::$cmd
+
+ +
+
+ +
+
+ + + + +
App::$config
+
+ +
+
+ +
+
+ + + + +
App::$contact
+
+ +
+
+ +
+
+ + + + +
App::$contacts
+
+ +
+
+ +
+
+ + + + +
App::$content
+
+ +
+
+ +
+
+ + + + +
App::$css_sources = array()
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$curl_code
+
+private
+
+ +

Referenced by get_curl_code().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$curl_headers
+
+private
+
+ +

Referenced by get_curl_headers().

+ +
+
+ +
+
+ + + + +
App::$data = array()
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$db
+
+private
+
+ +
+
+ +
+
+ + + + +
App::$error = false
+
+ +
+
+ +
+
+ + + + +
App::$force_max_items = 0
+
+ +
+
+ +
+
+ + + + +
App::$groups
+
+ +

Referenced by get_groups().

+ +
+
+ +
+
+ + + + +
App::$hooks
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$hostname
+
+private
+
+ +

Referenced by get_hostname().

+ +
+
+ +
+
+ + + + +
App::$identities
+
+ +
+
+ +
+
+ + + + +
App::$interactive = true
+
+ +
+
+ +
+
+ + + + +
App::$js_sources = array()
+
+ +
+
+ +
+
+ + + + +
App::$language
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$ldelim
+
+private
+
+Initial value:
= array(
+
'internal' => '',
+
'smarty3' => '{{'
+
)
+
+
+
+ +
+
+ + + + +
App::$module
+
+ +
+
+ +
+
+ + + + +
App::$module_loaded = false
+
+ +
+
+ +
+
+ + + + +
App::$nav_sel
+
+ +
+
+ +
+
+ + + + +
App::$observer = null
+
+ +

Referenced by get_observer().

+ +
+
+ +
+
+ + + + +
App::$page
+
+ +
+
+ +
+
+ + + + +
App::$pager
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$path
+
+private
+
+ +

Referenced by __construct(), and get_path().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$perms = null
+
+private
+
+ +

Referenced by get_perms(), and set_perms().

+ +
+
+ +
+
+ + + + +
App::$plugins
+
+ +
+
+ +
+
+ + + + +
App::$profile
+
+ +
+
+ +
+
+ + + + +
App::$query_string
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$rdelim
+
+private
+
+Initial value:
= array(
+
'internal' => '',
+
'smarty3' => '}}'
+
)
+
+
+
+ +
+
+ + + + + +
+ + + + +
App::$scheme
+
+private
+
+ +

Referenced by get_baseurl().

+ +
+
+ +
+
+ + + + +
App::$sourcename = ''
+
+ +
+
+ +
+
+ + + + +
App::$strings
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$theme
+
+private
+
+Initial value:
= array(
+
'sourcename' => '',
+
'videowidth' => 425,
+
'videoheight' => 350,
+
'force_max_items' => 0,
+
'thread_allow' => true,
+
'stylesheet' => '',
+
'template_engine' => 'internal',
+
)
+
+
+
+ +
+
+ + + + +
App::$theme_info = array()
+
+ +
+
+ +
+
+ + + + +
App::$theme_thread_allow = true
+
+ +
+
+ +
+
+ + + + +
App::$timezone
+
+ +
+
+ +
+
+ + + + +
App::$user
+
+ +
+
+ +
+
+ + + + +
App::$videoheight = 350
+
+ +
+
+ +
+
+ + + + +
App::$videowidth = 425
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$widgetlist = null
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$widgets = array()
+
+private
+
+ +

Referenced by get_widgets().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.3 From 0ee1e83a3c6bb48064789a622f5eb7331733cb64 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 26 Feb 2013 16:04:28 -0800 Subject: small doco update --- doc/html/classApp.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index ac0d1192f..4862c0677 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -1652,7 +1652,7 @@ Private Attributes - - - - + -- cgit v1.2.3 From 9e22ec928b9534ea9db0d18bf685fb0d357fbad2 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 18 Apr 2013 21:06:31 -0700 Subject: more umbilical cutting --- doc/html/classApp.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 4ce56a345..28a9d694c 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -28,7 +28,7 @@ - + + + + + - - - - - - + + + + + +
The Red Project
-- cgit v1.2.3 From 946554ff4b03d81f32375832b8b50883a3ffeedf Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 10 May 2013 03:52:06 -0700 Subject: doc update --- doc/html/classApp.html | 119 +++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 106 insertions(+), 13 deletions(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 28a9d694c..4423ea646 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -173,14 +173,18 @@ Public Member Functions
 
 get_curl_headers ()
 
 register_template_engine ($class, $name= '')
 
 template_engine ($name= '')
 
 get_template_engine ()
 
 set_template_engine ($engine= 'internal')
 
 get_template_ldelim ($engine= 'internal')
 
 get_template_rdelim ($engine= 'internal')
 
 set_template_engine ($engine= 'smarty3')
 
 get_template_ldelim ($engine= 'smarty3')
 
 get_template_rdelim ($engine= 'smarty3')
 
@@ -260,6 +264,10 @@ Public Attributes + + + +

Public Attributes

 
 $theme_thread_allow = true
 
 $template_engines = array()
 
 $template_engine_instance = array()
 
@@ -317,6 +325,7 @@ Private Attributes

There will always be one argument. If provided a naked domain URL, $this->argv[0] is set to "home".

See if there is any page number information, and initialise pagination

Detect mobile devices

+

register template engines

@@ -519,7 +528,7 @@ Private Attributes - +

Private Attributes

@@ -527,7 +536,7 @@ Private Attributes - +
App::get_template_ldelim (  $engine = 'internal')$engine = 'smarty3')
@@ -535,7 +544,7 @@ Private Attributes - +
@@ -543,7 +552,7 @@ Private Attributes - +
App::get_template_rdelim (  $engine = 'internal')$engine = 'smarty3')
@@ -565,6 +574,42 @@ Private Attributes
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
App::register_template_engine ( $class,
 $name = '' 
)
+
+

register template engine class if $name is "", is used class static property $class::$name

+
Parameters
+ + + +
string$class
string$name
+
+
+ +

Referenced by __construct().

+
@@ -775,7 +820,7 @@ Private Attributes - +
@@ -783,7 +828,7 @@ Private Attributes - +
App::set_template_engine (  $engine = 'internal')$engine = 'smarty3')
@@ -821,6 +866,30 @@ Private Attributes
+
+
+ +
+
+ + + + + + + + +
App::template_engine ( $name = '')
+
+

return template engine instance. If $name is not defined, return engine defined by theme, or default

+
Parameters
+ + +
strin$nameTemplate engine name
+
+
+
Returns
object Template Engine instance
+

Member Data Documentation

@@ -1498,6 +1567,30 @@ Private Attributes
+
+ + +
+
+ + + + +
App::$template_engine_instance = array()
+
+ +
+
+ +
+
+ + + + +
App::$template_engines = array()
+
+
@@ -1524,7 +1617,7 @@ Private Attributes
'force_max_items' => 0,
'thread_allow' => true,
'stylesheet' => '',
-
'template_engine' => 'internal',
+
'template_engine' => 'smarty3',
)
-- cgit v1.2.3 From 34526e82531c67995e25cf04abce0d927ce22ffd Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 10 May 2013 03:59:11 -0700 Subject: doc cleanup --- doc/html/classApp.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 4423ea646..f7376d1e5 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -4,7 +4,7 @@ -The Red Project: App Class Reference +The Red Matrix: App Class Reference @@ -30,7 +30,7 @@ Logo -
The Red Project +
The Red Matrix
-- cgit v1.2.3 From 5e4b9d7766ceffd19785f14443cc1b4d4f675d4e Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 14 May 2013 21:25:58 -0700 Subject: disable pcss when installing since modules don't yet work and pcss uses the view module, plus weekly doc update --- doc/html/classApp.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index f7376d1e5..ba50926b6 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -28,7 +28,7 @@ - + + + + +
The Red Matrix
-- cgit v1.2.3 From 39856f7cb1c15bd737d60581e0a54a061896f99d Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 14 Jul 2013 01:12:05 -0700 Subject: Add self to recipient lists. Sure we already have a copy but it's possible our nomadic channel clones don't. --- doc/html/classApp.html | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index ba50926b6..8ae864878 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -185,6 +185,10 @@ Public Member Functions
 
 get_template_rdelim ($engine= 'smarty3')
 
 head_set_icon ($icon)
 
 head_get_icon ()
 
@@ -574,6 +578,41 @@ Private Attributes

Public Attributes

+
+ + +
+
+ + + + + + + +
App::head_get_icon ()
+
+ +

Referenced by build_pagehead().

+ +
+
+ +
+
+ + + + + + + + +
App::head_set_icon ( $icon)
+
+ +

Referenced by __construct().

+
-- cgit v1.2.3 From ade81747503fe64fc3c7f99e0e3ff34b7d6cc3e7 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 19 Jul 2013 01:20:51 -0700 Subject: private pokes - perhaps a little *too* private. --- doc/html/classApp.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 8ae864878..84c465b4d 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -198,6 +198,8 @@ Public Attributes    $observer = null   + $profile_uid = 0 +   $groups    $language @@ -1524,6 +1526,18 @@ Private Attributes
+
+ + +
+
+ + + + +
App::$profile_uid = 0
+
+
-- cgit v1.2.3 From 8a7fea45cc471b57cf0e44b03992d94b5a73bd0a Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 3 Aug 2013 00:41:40 -0700 Subject: doc updates --- doc/html/classApp.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 84c465b4d..2328b52bd 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -131,8 +131,8 @@ Public Member Functions    get_path ()   - set_account ($aid) -  + set_account ($acct) +   get_account ()    set_channel ($channel) @@ -653,7 +653,7 @@ Private Attributes - +
@@ -661,7 +661,7 @@ Private Attributes - +
App::set_account (  $aid)$acct)
-- cgit v1.2.3 From d43a7659854c4bb6052c05a932b257883ea72748 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 31 Aug 2013 04:19:26 -0700 Subject: more debugging on localize_item top find out why likes are not translated in notifications, but are in displayed posts (using 'new' on matrix page) - in one case we're successfully pulling stuff from item['object'] and in the other we aren't - and it's the same object. --- doc/html/classApp.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 2328b52bd..313a7fc85 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -200,6 +200,8 @@ Public Attributes    $profile_uid = 0   + $layout = array() +   $groups    $language @@ -1360,6 +1362,18 @@ Private Attributes
+
+
+ +
+
+ + + + +
App::$layout = array()
+
+
-- cgit v1.2.3 From 8cd9a2c3a944e804c72ef461df801116c6b44ac7 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 28 Nov 2013 19:37:39 -0800 Subject: doc updates --- doc/html/classApp.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 313a7fc85..f5d4a8d21 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -28,7 +28,7 @@ - + - - - - - - - - @@ -414,36 +406,6 @@ Private Attributes
The Red Matrix
-- cgit v1.2.3 From 90fff1de1c81eca9cdca8c41ec8083b72965b4a2 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 6 Dec 2013 00:11:03 -0800 Subject: doc updates --- doc/html/classApp.html | 74 -------------------------------------------------- 1 file changed, 74 deletions(-) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index f5d4a8d21..38ed4ada3 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -165,14 +165,6 @@ Public Member Functions
 
 build_pagehead ()
 
 set_curl_code ($code)
 
 get_curl_code ()
 
 set_curl_headers ($headers)
 
 get_curl_headers ()
 
 register_template_engine ($class, $name= '')
 
 template_engine ($name= '')
-
- - -
-
- - - - - - - -
App::get_curl_code ()
-
- -
-
- -
-
- - - - - - - -
App::get_curl_headers ()
-
-
@@ -717,38 +679,6 @@ Private Attributes
-
- - -
-
- - - - - - - - -
App::set_curl_code ( $code)
-
- -
-
- -
-
- - - - - - - - -
App::set_curl_headers ( $headers)
-
-
@@ -1186,8 +1116,6 @@ Private Attributes
-

Referenced by get_curl_code().

-
@@ -1208,8 +1136,6 @@ Private Attributes
-

Referenced by get_curl_headers().

-
-- cgit v1.2.3 From 916f3e9afc0dcf7f4255bac917ed6236595c7e07 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 20 Dec 2013 01:39:05 -0800 Subject: doc updates --- doc/html/classApp.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 38ed4ada3..3c6d0655e 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -192,6 +192,8 @@ Public Attributes    $profile_uid = 0   + $poi = null +   $layout = array()    $groups @@ -1454,6 +1456,18 @@ Private Attributes
+
+ + +
+
+ + + + +
App::$poi = null
+
+
-- cgit v1.2.3 From fb49647993fec8f52e69801ce92a9882a4c95b1a Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 7 Feb 2014 00:49:45 -0800 Subject: doc updates --- doc/html/classApp.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'doc/html/classApp.html') diff --git a/doc/html/classApp.html b/doc/html/classApp.html index 3c6d0655e..bd8e6bbf0 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -184,6 +184,8 @@ Public Member Functions + + @@ -1254,6 +1256,18 @@ Private Attributes

Public Attributes

 $install = false
 
 $account = null
 
 $channel = null
+
+ + +
+
+ + + + +
App::$install = false
+
+
-- cgit v1.2.3