aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-21 19:16:21 -0800
committerfriendica <info@friendica.com>2013-01-21 19:16:21 -0800
commit5949607d17bceb51d61c73b5c0dbc0fcc063bd04 (patch)
treec3c59d435e146bd46a27d4503fc9b33878664b3f /boot.php
parent6421c09cff6bebd9c7f191d36239a8c4efe74bdf (diff)
downloadvolse-hubzilla-5949607d17bceb51d61c73b5c0dbc0fcc063bd04.tar.gz
volse-hubzilla-5949607d17bceb51d61c73b5c0dbc0fcc063bd04.tar.bz2
volse-hubzilla-5949607d17bceb51d61c73b5c0dbc0fcc063bd04.zip
magic auth - it's mostly done or at least all the code bits are written and it looks in theory to be pretty secure and it doesn't white screen. Getting it to actually work(?), well we won't know how hard that will be until we get it on a couple of systems and try it. Magic auth on one box is a no-op because you're already authenticated.
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 63c7325ea..5dddb6404 100644
--- a/boot.php
+++ b/boot.php
@@ -454,7 +454,7 @@ if(! class_exists('App')) {
private $widgets = array(); // widgets for this page
-
+ public $groups;
public $language;
public $module_loaded = false;
public $query_string;
@@ -749,6 +749,13 @@ if(! class_exists('App')) {
$this->apps = $arr;
}
+ function set_groups($g) {
+ $this->groups = $g;
+ }
+
+ function get_groups() {
+ return $this->groups;
+ }
function set_widget($title,$html, $location = 'aside') {
$this->widgets[] = array('title' => $title, 'html' => $html, 'location' => $location);