Merge remote-tracking branch 'upstream/dev' into website-import
This commit is contained in:
commit
5131759823
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
if(class_exists('PermissionDescription')) return;
|
namespace Zotlabs\Lib;
|
||||||
|
|
||||||
require_once("include/permissions.php");
|
require_once("include/permissions.php");
|
||||||
require_once("include/language.php");
|
require_once("include/language.php");
|
@ -9,7 +9,6 @@ require_once('include/security.php');
|
|||||||
require_once('include/conversation.php');
|
require_once('include/conversation.php');
|
||||||
require_once('include/acl_selectors.php');
|
require_once('include/acl_selectors.php');
|
||||||
require_once('include/permissions.php');
|
require_once('include/permissions.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
class Channel extends \Zotlabs\Web\Controller {
|
class Channel extends \Zotlabs\Web\Controller {
|
||||||
|
|
||||||
@ -133,7 +132,7 @@ class Channel extends \Zotlabs\Web\Controller {
|
|||||||
'default_location' => (($is_owner) ? \App::$profile['channel_location'] : ''),
|
'default_location' => (($is_owner) ? \App::$profile['channel_location'] : ''),
|
||||||
'nickname' => \App::$profile['channel_address'],
|
'nickname' => \App::$profile['channel_address'],
|
||||||
'lockstate' => (((strlen(\App::$profile['channel_allow_cid'])) || (strlen(\App::$profile['channel_allow_gid'])) || (strlen(\App::$profile['channel_deny_cid'])) || (strlen(\App::$profile['channel_deny_gid']))) ? 'lock' : 'unlock'),
|
'lockstate' => (((strlen(\App::$profile['channel_allow_cid'])) || (strlen(\App::$profile['channel_allow_gid'])) || (strlen(\App::$profile['channel_deny_cid'])) || (strlen(\App::$profile['channel_deny_gid']))) ? 'lock' : 'unlock'),
|
||||||
'acl' => (($is_owner) ? populate_acl($channel_acl,true, \PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post') : ''),
|
'acl' => (($is_owner) ? populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post') : ''),
|
||||||
'showacl' => (($is_owner) ? 'yes' : ''),
|
'showacl' => (($is_owner) ? 'yes' : ''),
|
||||||
'bang' => '',
|
'bang' => '',
|
||||||
'visitor' => (($is_owner || $observer) ? true : false),
|
'visitor' => (($is_owner || $observer) ? true : false),
|
||||||
|
@ -4,7 +4,6 @@ namespace Zotlabs\Module;
|
|||||||
require_once('include/channel.php');
|
require_once('include/channel.php');
|
||||||
require_once('include/acl_selectors.php');
|
require_once('include/acl_selectors.php');
|
||||||
require_once('include/conversation.php');
|
require_once('include/conversation.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
|
|
||||||
class Editwebpage extends \Zotlabs\Web\Controller {
|
class Editwebpage extends \Zotlabs\Web\Controller {
|
||||||
@ -151,7 +150,7 @@ class Editwebpage extends \Zotlabs\Web\Controller {
|
|||||||
'body' => undo_post_tagging($itm[0]['body']),
|
'body' => undo_post_tagging($itm[0]['body']),
|
||||||
'post_id' => $post_id,
|
'post_id' => $post_id,
|
||||||
'visitor' => ($is_owner) ? true : false,
|
'visitor' => ($is_owner) ? true : false,
|
||||||
'acl' => populate_acl($itm[0],false,\PermissionDescription::fromGlobalPermission('view_pages')),
|
'acl' => populate_acl($itm[0],false,\Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_pages')),
|
||||||
'showacl' => ($is_owner) ? true : false,
|
'showacl' => ($is_owner) ? true : false,
|
||||||
'mimetype' => $mimetype,
|
'mimetype' => $mimetype,
|
||||||
'mimeselect' => true,
|
'mimeselect' => true,
|
||||||
|
@ -6,7 +6,6 @@ require_once('include/bbcode.php');
|
|||||||
require_once('include/datetime.php');
|
require_once('include/datetime.php');
|
||||||
require_once('include/event.php');
|
require_once('include/event.php');
|
||||||
require_once('include/items.php');
|
require_once('include/items.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
|
|
||||||
class Events extends \Zotlabs\Web\Controller {
|
class Events extends \Zotlabs\Web\Controller {
|
||||||
@ -471,7 +470,7 @@ class Events extends \Zotlabs\Web\Controller {
|
|||||||
'$permissions' => t('Permission settings'),
|
'$permissions' => t('Permission settings'),
|
||||||
// populating the acl dialog was a permission description from view_stream because Cal.php, which
|
// populating the acl dialog was a permission description from view_stream because Cal.php, which
|
||||||
// displays events, says "since we don't currently have an event permission - use the stream permission"
|
// displays events, says "since we don't currently have an event permission - use the stream permission"
|
||||||
'$acl' => (($orig_event['event_xchan']) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $perm_defaults), false, \PermissionDescription::fromGlobalPermission('view_stream'))),
|
'$acl' => (($orig_event['event_xchan']) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $perm_defaults), false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'))),
|
||||||
'$submit' => t('Submit'),
|
'$submit' => t('Submit'),
|
||||||
'$advanced' => t('Advanced Options')
|
'$advanced' => t('Advanced Options')
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@ namespace Zotlabs\Module;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
require_once('include/attach.php');
|
require_once('include/attach.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -134,7 +133,7 @@ class Filestorage extends \Zotlabs\Web\Controller {
|
|||||||
$cloudpath = get_cloudpath($f) . (intval($f['is_dir']) ? '?f=&davguest=1' : '');
|
$cloudpath = get_cloudpath($f) . (intval($f['is_dir']) ? '?f=&davguest=1' : '');
|
||||||
$parentpath = get_parent_cloudpath($channel['channel_id'], $channel['channel_address'], $f['hash']);
|
$parentpath = get_parent_cloudpath($channel['channel_id'], $channel['channel_address'], $f['hash']);
|
||||||
|
|
||||||
$aclselect_e = populate_acl($f, false, \PermissionDescription::fromGlobalPermission('view_storage'));
|
$aclselect_e = populate_acl($f, false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_storage'));
|
||||||
$is_a_dir = (intval($f['is_dir']) ? true : false);
|
$is_a_dir = (intval($f['is_dir']) ? true : false);
|
||||||
|
|
||||||
$lockstate = (($f['allow_cid'] || $f['allow_gid'] || $f['deny_cid'] || $f['deny_gid']) ? 'lock' : 'unlock');
|
$lockstate = (($f['allow_cid'] || $f['allow_gid'] || $f['deny_cid'] || $f['deny_gid']) ? 'lock' : 'unlock');
|
||||||
|
@ -905,7 +905,7 @@ class Item extends \Zotlabs\Web\Controller {
|
|||||||
if($r) {
|
if($r) {
|
||||||
xchan_query($r);
|
xchan_query($r);
|
||||||
$sync_item = fetch_post_tags($r);
|
$sync_item = fetch_post_tags($r);
|
||||||
build_sync_packet($uid,array('item' => array(encode_item($sync_item[0],true))));
|
build_sync_packet($profile_uid,array('item' => array(encode_item($sync_item[0],true))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(! $nopush)
|
if(! $nopush)
|
||||||
@ -1000,7 +1000,7 @@ class Item extends \Zotlabs\Web\Controller {
|
|||||||
if($r) {
|
if($r) {
|
||||||
xchan_query($r);
|
xchan_query($r);
|
||||||
$sync_item = fetch_post_tags($r);
|
$sync_item = fetch_post_tags($r);
|
||||||
build_sync_packet($uid,array('item' => array(encode_item($sync_item[0],true))));
|
build_sync_packet($profile_uid,array('item' => array(encode_item($sync_item[0],true))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1014,11 +1014,6 @@ class Item extends \Zotlabs\Web\Controller {
|
|||||||
|
|
||||||
logger('post_complete');
|
logger('post_complete');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// figure out how to return, depending on from whence we came
|
// figure out how to return, depending on from whence we came
|
||||||
|
|
||||||
if($api_source)
|
if($api_source)
|
||||||
|
@ -6,8 +6,6 @@ require_once('include/group.php');
|
|||||||
require_once('include/contact_widgets.php');
|
require_once('include/contact_widgets.php');
|
||||||
require_once('include/conversation.php');
|
require_once('include/conversation.php');
|
||||||
require_once('include/acl_selectors.php');
|
require_once('include/acl_selectors.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Network extends \Zotlabs\Web\Controller {
|
class Network extends \Zotlabs\Web\Controller {
|
||||||
@ -171,7 +169,7 @@ class Network extends \Zotlabs\Web\Controller {
|
|||||||
'default_location' => $channel['channel_location'],
|
'default_location' => $channel['channel_location'],
|
||||||
'nickname' => $channel['channel_address'],
|
'nickname' => $channel['channel_address'],
|
||||||
'lockstate' => (($private_editing || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
|
'lockstate' => (($private_editing || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
|
||||||
'acl' => populate_acl((($private_editing) ? $def_acl : $channel_acl), true, \PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
|
'acl' => populate_acl((($private_editing) ? $def_acl : $channel_acl), true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
|
||||||
'bang' => (($private_editing) ? '!' : ''),
|
'bang' => (($private_editing) ? '!' : ''),
|
||||||
'visitor' => true,
|
'visitor' => true,
|
||||||
'profile_uid' => local_channel(),
|
'profile_uid' => local_channel(),
|
||||||
|
@ -9,8 +9,6 @@ require_once('include/bbcode.php');
|
|||||||
require_once('include/security.php');
|
require_once('include/security.php');
|
||||||
require_once('include/attach.php');
|
require_once('include/attach.php');
|
||||||
require_once('include/text.php');
|
require_once('include/text.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Photos extends \Zotlabs\Web\Controller {
|
class Photos extends \Zotlabs\Web\Controller {
|
||||||
@ -633,7 +631,7 @@ class Photos extends \Zotlabs\Web\Controller {
|
|||||||
$lockstate = (($acl->is_private()) ? 'lock' : 'unlock');
|
$lockstate = (($acl->is_private()) ? 'lock' : 'unlock');
|
||||||
}
|
}
|
||||||
|
|
||||||
$aclselect = (($_is_owner) ? populate_acl($channel_acl,false, \PermissionDescription::fromGlobalPermission('view_storage')) : '');
|
$aclselect = (($_is_owner) ? populate_acl($channel_acl,false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_storage')) : '');
|
||||||
|
|
||||||
// this is wrong but is to work around an issue with js_upload wherein it chokes if these variables
|
// this is wrong but is to work around an issue with js_upload wherein it chokes if these variables
|
||||||
// don't exist. They really should be set to a parseable representation of the channel's default permissions
|
// don't exist. They really should be set to a parseable representation of the channel's default permissions
|
||||||
@ -1023,7 +1021,7 @@ class Photos extends \Zotlabs\Web\Controller {
|
|||||||
if($can_post) {
|
if($can_post) {
|
||||||
$album_e = $ph[0]['album'];
|
$album_e = $ph[0]['album'];
|
||||||
$caption_e = $ph[0]['description'];
|
$caption_e = $ph[0]['description'];
|
||||||
$aclselect_e = (($_is_owner) ? populate_acl($ph[0], true, \PermissionDescription::fromGlobalPermission('view_storage')) : '');
|
$aclselect_e = (($_is_owner) ? populate_acl($ph[0], true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_storage')) : '');
|
||||||
$albums = ((array_key_exists('albums', \App::$data)) ? \App::$data['albums'] : photos_albums_list(\App::$data['channel'],\App::$data['observer']));
|
$albums = ((array_key_exists('albums', \App::$data)) ? \App::$data['albums'] : photos_albums_list(\App::$data['channel'],\App::$data['observer']));
|
||||||
|
|
||||||
$_SESSION['album_return'] = bin2hex($ph[0]['album']);
|
$_SESSION['album_return'] = bin2hex($ph[0]['album']);
|
||||||
|
@ -7,7 +7,6 @@ require_once('include/items.php');
|
|||||||
require_once('include/taxonomy.php');
|
require_once('include/taxonomy.php');
|
||||||
require_once('include/conversation.php');
|
require_once('include/conversation.php');
|
||||||
require_once('include/zot.php');
|
require_once('include/zot.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* remote post
|
* remote post
|
||||||
@ -116,7 +115,7 @@ class Rpost extends \Zotlabs\Web\Controller {
|
|||||||
'default_location' => $channel['channel_location'],
|
'default_location' => $channel['channel_location'],
|
||||||
'nickname' => $channel['channel_address'],
|
'nickname' => $channel['channel_address'],
|
||||||
'lockstate' => (($acl->is_private()) ? 'lock' : 'unlock'),
|
'lockstate' => (($acl->is_private()) ? 'lock' : 'unlock'),
|
||||||
'acl' => populate_acl($channel_acl, true, \PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
|
'acl' => populate_acl($channel_acl, true, Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
|
||||||
'bang' => '',
|
'bang' => '',
|
||||||
'visitor' => true,
|
'visitor' => true,
|
||||||
'profile_uid' => local_channel(),
|
'profile_uid' => local_channel(),
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
namespace Zotlabs\Module; /** @file */
|
namespace Zotlabs\Module; /** @file */
|
||||||
|
|
||||||
require_once('include/zot.php');
|
require_once('include/zot.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Settings extends \Zotlabs\Web\Controller {
|
class Settings extends \Zotlabs\Web\Controller {
|
||||||
@ -1066,7 +1064,7 @@ class Settings extends \Zotlabs\Web\Controller {
|
|||||||
'$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), intval($channel['channel_max_friend_req']) , t('May reduce spam activity')),
|
'$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), intval($channel['channel_max_friend_req']) , t('May reduce spam activity')),
|
||||||
'$permissions' => t('Default Post and Publish Permissions'),
|
'$permissions' => t('Default Post and Publish Permissions'),
|
||||||
'$permdesc' => t("\x28click to open/close\x29"),
|
'$permdesc' => t("\x28click to open/close\x29"),
|
||||||
'$aclselect' => populate_acl($perm_defaults, false, \PermissionDescription::fromDescription(t('Use my default audience setting for the type of object published'))),
|
'$aclselect' => populate_acl($perm_defaults, false, \Zotlabs\Lib\PermissionDescription::fromDescription(t('Use my default audience setting for the type of object published'))),
|
||||||
'$suggestme' => $suggestme,
|
'$suggestme' => $suggestme,
|
||||||
'$group_select' => $group_select,
|
'$group_select' => $group_select,
|
||||||
'$role' => array('permissions_role' , t('Channel permissions category:'), $permissions_role, '', get_roles()),
|
'$role' => array('permissions_role' , t('Channel permissions category:'), $permissions_role, '', get_roles()),
|
||||||
|
@ -493,7 +493,6 @@ class Setup extends \Zotlabs\Web\Controller {
|
|||||||
$this->check_add($ck_funcs, t('OpenSSL PHP module'), true, true);
|
$this->check_add($ck_funcs, t('OpenSSL PHP module'), true, true);
|
||||||
$this->check_add($ck_funcs, t('mysqli or postgres PHP module'), true, true);
|
$this->check_add($ck_funcs, t('mysqli or postgres PHP module'), true, true);
|
||||||
$this->check_add($ck_funcs, t('mb_string PHP module'), true, true);
|
$this->check_add($ck_funcs, t('mb_string PHP module'), true, true);
|
||||||
$this->check_add($ck_funcs, t('mcrypt PHP module'), true, true);
|
|
||||||
$this->check_add($ck_funcs, t('xml PHP module'), true, true);
|
$this->check_add($ck_funcs, t('xml PHP module'), true, true);
|
||||||
|
|
||||||
if(function_exists('apache_get_modules')){
|
if(function_exists('apache_get_modules')){
|
||||||
@ -530,10 +529,6 @@ class Setup extends \Zotlabs\Web\Controller {
|
|||||||
$ck_funcs[4]['status'] = false;
|
$ck_funcs[4]['status'] = false;
|
||||||
$ck_funcs[4]['help'] = t('Error: mb_string PHP module required but not installed.');
|
$ck_funcs[4]['help'] = t('Error: mb_string PHP module required but not installed.');
|
||||||
}
|
}
|
||||||
if(! function_exists('mcrypt_encrypt')) {
|
|
||||||
$ck_funcs[5]['status'] = false;
|
|
||||||
$ck_funcs[5]['help'] = t('Error: mcrypt PHP module required but not installed.');
|
|
||||||
}
|
|
||||||
if(! extension_loaded('xml')) {
|
if(! extension_loaded('xml')) {
|
||||||
$ck_funcs[6]['status'] = false;
|
$ck_funcs[6]['status'] = false;
|
||||||
$ck_funcs[6]['help'] = t('Error: xml PHP module required for DAV but not installed.');
|
$ck_funcs[6]['help'] = t('Error: xml PHP module required for DAV but not installed.');
|
||||||
|
@ -4,7 +4,6 @@ namespace Zotlabs\Module;
|
|||||||
require_once('include/channel.php');
|
require_once('include/channel.php');
|
||||||
require_once('include/conversation.php');
|
require_once('include/conversation.php');
|
||||||
require_once('include/acl_selectors.php');
|
require_once('include/acl_selectors.php');
|
||||||
require_once('include/PermissionDescription.php');
|
|
||||||
|
|
||||||
|
|
||||||
class Webpages extends \Zotlabs\Web\Controller {
|
class Webpages extends \Zotlabs\Web\Controller {
|
||||||
@ -105,7 +104,7 @@ class Webpages extends \Zotlabs\Web\Controller {
|
|||||||
'is_owner' => true,
|
'is_owner' => true,
|
||||||
'nickname' => \App::$profile['channel_address'],
|
'nickname' => \App::$profile['channel_address'],
|
||||||
'lockstate' => (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
|
'lockstate' => (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
|
||||||
'acl' => (($is_owner) ? populate_acl($channel_acl,false, \PermissionDescription::fromGlobalPermission('view_pages')) : ''),
|
'acl' => (($is_owner) ? populate_acl($channel_acl,false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_pages')) : ''),
|
||||||
'showacl' => (($is_owner) ? true : false),
|
'showacl' => (($is_owner) ? true : false),
|
||||||
'visitor' => true,
|
'visitor' => true,
|
||||||
'hide_location' => true,
|
'hide_location' => true,
|
||||||
|
@ -24,7 +24,8 @@ class SessionHandler implements \SessionHandlerInterface {
|
|||||||
return $r[0]['sess_data'];
|
return $r[0]['sess_data'];
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
q("INSERT INTO `session` (sid, expire) values ('%s', '%s')",
|
q("INSERT INTO `session` (sess_data, sid, expire) values ('%s', '%s', '%s')",
|
||||||
|
dbesc(''),
|
||||||
dbesc($id),
|
dbesc($id),
|
||||||
dbesc(time() + 300)
|
dbesc(time() + 300)
|
||||||
);
|
);
|
||||||
|
11
doc/hook/change_channel.bb
Normal file
11
doc/hook/change_channel.bb
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
[h2]change_channel[/h2]
|
||||||
|
|
||||||
|
Called when entering a logged in state in a channel context (as opposed to an account context).
|
||||||
|
The hook array provides two arguments, 'channel_id' and 'chanx'. 'chanx' is a union of the channel
|
||||||
|
and xchan records for the now active channel.
|
||||||
|
|
||||||
|
Use this to capture what would traditionally be known as 'login events'. In this platform, login is
|
||||||
|
a separate authentication activity and doesn't necessarily require "connecting to an identity", which
|
||||||
|
is what the change_channel activity represents.
|
||||||
|
|
||||||
|
|
@ -73,6 +73,9 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the
|
|||||||
[zrl=[baseurl]/help/hook/bb_translate_video]bb_translate_video[/zrl]
|
[zrl=[baseurl]/help/hook/bb_translate_video]bb_translate_video[/zrl]
|
||||||
Called when extracting embedded services from bbcode video elements (rarely used)
|
Called when extracting embedded services from bbcode video elements (rarely used)
|
||||||
|
|
||||||
|
[zrl=[baseurl]/help/hook/change_channel]change_channel[/zrl]
|
||||||
|
Called when logging in to a channel (either during login or afterward through the channel manager)
|
||||||
|
|
||||||
[zrl=[baseurl]/help/hook/channel_remove]channel_remove[/zrl]
|
[zrl=[baseurl]/help/hook/channel_remove]channel_remove[/zrl]
|
||||||
Called when removing a channel
|
Called when removing a channel
|
||||||
|
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
* @package acl_selectors
|
* @package acl_selectors
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once("include/PermissionDescription.php");
|
|
||||||
|
|
||||||
function group_select($selname,$selclass,$preselected = false,$size = 4) {
|
function group_select($selname,$selclass,$preselected = false,$size = 4) {
|
||||||
|
|
||||||
$o = '';
|
$o = '';
|
||||||
@ -231,7 +229,7 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti
|
|||||||
if(! $emptyACL_description) {
|
if(! $emptyACL_description) {
|
||||||
$showall_caption = t('Visible to your default audience');
|
$showall_caption = t('Visible to your default audience');
|
||||||
|
|
||||||
} else if (is_a($emptyACL_description, 'PermissionDescription')) {
|
} else if (is_a($emptyACL_description, '\\Zotlabs\\Lib\\PermissionDescription')) {
|
||||||
$showall_caption = $emptyACL_description->get_permission_description();
|
$showall_caption = $emptyACL_description->get_permission_description();
|
||||||
$showall_origin = (($role === 'custom') ? $emptyACL_description->get_permission_origin_description() : '');
|
$showall_origin = (($role === 'custom') ? $emptyACL_description->get_permission_origin_description() : '');
|
||||||
$showall_icon = $emptyACL_description->get_permission_icon();
|
$showall_icon = $emptyACL_description->get_permission_icon();
|
||||||
|
@ -125,13 +125,17 @@ function change_channel($change_channel) {
|
|||||||
);
|
);
|
||||||
if($x) {
|
if($x) {
|
||||||
$_SESSION['my_url'] = $x[0]['xchan_url'];
|
$_SESSION['my_url'] = $x[0]['xchan_url'];
|
||||||
$_SESSION['my_address'] = $r[0]['channel_address'] . '@' . substr(z_root(), strpos(z_root(), '://') + 3);
|
$_SESSION['my_address'] = $r[0]['channel_address'] . '@' . App::get_hostname();
|
||||||
|
|
||||||
App::set_observer($x[0]);
|
App::set_observer($x[0]);
|
||||||
App::set_perms(get_all_perms(local_channel(), $hash));
|
App::set_perms(get_all_perms(local_channel(), $hash));
|
||||||
}
|
}
|
||||||
if(! is_dir('store/' . $r[0]['channel_address']))
|
if(! is_dir('store/' . $r[0]['channel_address']))
|
||||||
@os_mkdir('store/' . $r[0]['channel_address'], STORAGE_DEFAULT_PERMISSIONS,true);
|
@os_mkdir('store/' . $r[0]['channel_address'], STORAGE_DEFAULT_PERMISSIONS,true);
|
||||||
|
|
||||||
|
$arr = [ 'channel_id' => $change_channel, 'chanx' => $ret ];
|
||||||
|
call_hooks('change_channel', $arr);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $ret;
|
return $ret;
|
||||||
|
@ -296,7 +296,7 @@ function widget_filer($arr) {
|
|||||||
$selected = ((x($_REQUEST,'file')) ? $_REQUEST['file'] : '');
|
$selected = ((x($_REQUEST,'file')) ? $_REQUEST['file'] : '');
|
||||||
|
|
||||||
$terms = array();
|
$terms = array();
|
||||||
$r = q("select distinct(term) from term where uid = %d and ttype = %d order by term asc",
|
$r = q("select distinct term from term where uid = %d and ttype = %d order by term asc",
|
||||||
intval(local_channel()),
|
intval(local_channel()),
|
||||||
intval(TERM_FILE)
|
intval(TERM_FILE)
|
||||||
);
|
);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `abconfig` (
|
CREATE TABLE IF NOT EXISTS `abconfig` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`chan` int(10) unsigned NOT NULL DEFAULT '',
|
`chan` int(10) unsigned NOT NULL DEFAULT '0',
|
||||||
`xchan` char(255) NOT NULL DEFAULT '',
|
`xchan` char(255) NOT NULL DEFAULT '',
|
||||||
`cat` char(255) NOT NULL DEFAULT '',
|
`cat` char(255) NOT NULL DEFAULT '',
|
||||||
`k` char(255) NOT NULL DEFAULT '',
|
`k` char(255) NOT NULL DEFAULT '',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
CREATE TABLE "abconfig" (
|
CREATE TABLE "abconfig" (
|
||||||
"id" serial NOT NULL,
|
"id" serial NOT NULL,
|
||||||
"chan" bigint NOT NULL,
|
"chan" bigint NOT NULL DEFAULT '0',
|
||||||
"xchan" text NOT NULL,
|
"xchan" text NOT NULL,
|
||||||
"cat" text NOT NULL,
|
"cat" text NOT NULL,
|
||||||
"k" text NOT NULL,
|
"k" text NOT NULL,
|
||||||
|
3
view/css/bootstrap-red.css
vendored
3
view/css/bootstrap-red.css
vendored
@ -59,7 +59,8 @@ aside .nav-pills > li > a,
|
|||||||
padding: 6px 10px;
|
padding: 6px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wall-item-tools .dropdown-menu {
|
.wall-item-tools .dropdown-menu,
|
||||||
|
.section-title-wrapper .dropdown-menu {
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,14 +56,16 @@ $(document).ready(function() {
|
|||||||
function makeFullScreen(full) {
|
function makeFullScreen(full) {
|
||||||
if(typeof full=='undefined' || full == true) {
|
if(typeof full=='undefined' || full == true) {
|
||||||
$('main').css({'transition': 'none'}).addClass('fullscreen');
|
$('main').css({'transition': 'none'}).addClass('fullscreen');
|
||||||
$('#fullscreen-btn, header, nav, aside, #tabs-collapse-1').css({'visibility': 'hidden'});
|
$('header, nav, aside, #tabs-collapse-1').css({'visibility': 'hidden'});
|
||||||
|
$('#fullscreen-btn').hide();
|
||||||
$('#inline-btn').show();
|
$('#inline-btn').show();
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$('main').removeClass('fullscreen');
|
$('main').removeClass('fullscreen');
|
||||||
$('#fullscreen-btn, header, nav, aside, #tabs-collapse-1').css({'visibility': ''});
|
$('header, nav, aside, #tabs-collapse-1').css({'visibility': ''});
|
||||||
$('#inline-btn').hide();
|
$('#inline-btn').hide();
|
||||||
|
$('#fullscreen-btn').show();
|
||||||
$('main').css({'transition': ''});
|
$('main').css({'transition': ''});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
<div class="generic-content-wrapper">
|
<div class="generic-content-wrapper">
|
||||||
<div class="section-title-wrapper">
|
<div class="section-title-wrapper">
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(); adjustFullscreenTopBarHeight();"><i class="fa fa-expand"></i></button>
|
|
||||||
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false); adjustInlineTopBarHeight();"><i class="fa fa-compress"></i></button>
|
|
||||||
{{if $is_owner}}
|
{{if $is_owner}}
|
||||||
<form id="chat-destroy" method="post" action="chat">
|
<form id="chat-destroy" method="post" action="chat">
|
||||||
<input type="hidden" name="room_name" value="{{$room_name}}" />
|
<input type="hidden" name="room_name" value="{{$room_name}}" />
|
||||||
@ -10,6 +8,8 @@
|
|||||||
<button class="btn btn-danger btn-xs" type="submit" name="submit" value="{{$drop}}" onclick="return confirmDelete();"><i class="fa fa-trash-o"></i> {{$drop}}</button>
|
<button class="btn btn-danger btn-xs" type="submit" name="submit" value="{{$drop}}" onclick="return confirmDelete();"><i class="fa fa-trash-o"></i> {{$drop}}</button>
|
||||||
</form>
|
</form>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(); adjustFullscreenTopBarHeight();"><i class="fa fa-expand"></i></button>
|
||||||
|
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false); adjustInlineTopBarHeight();"><i class="fa fa-compress"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<h2>{{$room_name}}</h2>
|
<h2>{{$room_name}}</h2>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
<div class="section-title-wrapper">
|
<div class="section-title-wrapper">
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
<div class="dropdown">
|
<div class="dropdown">
|
||||||
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
|
||||||
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
|
||||||
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"><i class="fa fa-caret-down"></i> {{$view_label}}</button>
|
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"><i class="fa fa-caret-down"></i> {{$view_label}}</button>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a href="#" onclick="changeView('changeView', 'month'); return false;">{{$month}}</a></li>
|
<li><a href="#" onclick="changeView('changeView', 'month'); return false;">{{$month}}</a></li>
|
||||||
@ -16,6 +14,8 @@
|
|||||||
<button id="events-spinner" class="btn btn-default btn-xs" onclick="changeView('today', false);" title="{{$today}}"><i class="fa fa-bullseye"></i></button>
|
<button id="events-spinner" class="btn btn-default btn-xs" onclick="changeView('today', false);" title="{{$today}}"><i class="fa fa-bullseye"></i></button>
|
||||||
<button class="btn btn-default btn-xs" onclick="changeView('next', false);" title="{{$next}}"><i class="fa fa-forward"></i></button>
|
<button class="btn btn-default btn-xs" onclick="changeView('next', false);" title="{{$next}}"><i class="fa fa-forward"></i></button>
|
||||||
</div>
|
</div>
|
||||||
|
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
||||||
|
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<h2 id="title"></h2>
|
<h2 id="title"></h2>
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
<div class="generic-content-wrapper">
|
<div class="generic-content-wrapper">
|
||||||
<div class="section-title-wrapper">
|
<div class="section-title-wrapper">
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
|
||||||
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button class="btn btn-default btn-xs" onclick="changeView('prev', false);" title="{{$prev}}"><i class="fa fa-backward"></i></button>
|
<button class="btn btn-default btn-xs" onclick="changeView('prev', false);" title="{{$prev}}"><i class="fa fa-backward"></i></button>
|
||||||
<button id="events-spinner" class="btn btn-default btn-xs" onclick="changeView('today', false);" title="{{$today}}"><i class="fa fa-bullseye"></i></button>
|
<button id="events-spinner" class="btn btn-default btn-xs" onclick="changeView('today', false);" title="{{$today}}"><i class="fa fa-bullseye"></i></button>
|
||||||
<button class="btn btn-default btn-xs" onclick="changeView('next', false);" title="{{$next}}"><i class="fa fa-forward"></i></button>
|
<button class="btn btn-default btn-xs" onclick="changeView('next', false);" title="{{$next}}"><i class="fa fa-forward"></i></button>
|
||||||
</div>
|
</div>
|
||||||
|
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
||||||
|
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<h2 id="title"></h2>
|
<h2 id="title"></h2>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
<div class="generic-content-wrapper">
|
<div class="generic-content-wrapper">
|
||||||
<div class="section-title-wrapper">
|
<div class="section-title-wrapper">
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
|
||||||
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
|
||||||
{{if $order}}
|
{{if $order}}
|
||||||
<a class="btn btn-default btn-xs" href="{{$order.1}}" title="{{$order.0}}"><i class="fa fa-sort"></i></a>
|
<a class="btn btn-default btn-xs" href="{{$order.1}}" title="{{$order.0}}"><i class="fa fa-sort"></i></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
@ -14,6 +12,8 @@
|
|||||||
<button class="btn btn-xs btn-success btn-xs" title="{{$usage}}" onclick="openClose('photo-upload-form'); closeMenu('photo-album-edit-wrapper');"><i class="fa fa-arrow-circle-o-up"></i> {{$upload.0}}</button>
|
<button class="btn btn-xs btn-success btn-xs" title="{{$usage}}" onclick="openClose('photo-upload-form'); closeMenu('photo-album-edit-wrapper');"><i class="fa fa-arrow-circle-o-up"></i> {{$upload.0}}</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
||||||
|
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<h2>{{$album}}</h2>
|
<h2>{{$album}}</h2>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
<div class="generic-content-wrapper">
|
<div class="generic-content-wrapper">
|
||||||
<div class="section-title-wrapper">
|
<div class="section-title-wrapper">
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
|
||||||
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
|
||||||
{{if $can_post}}
|
{{if $can_post}}
|
||||||
<button class="btn btn-xs btn-success" title="{{$usage}}" onclick="openClose('photo-upload-form');"><i class="fa fa-arrow-circle-o-up"></i> {{$upload.0}}</button>
|
<button class="btn btn-xs btn-success" title="{{$usage}}" onclick="openClose('photo-upload-form');"><i class="fa fa-arrow-circle-o-up"></i> {{$upload.0}}</button>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
<button id="fullscreen-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button>
|
||||||
|
<button id="inline-btn" type="button" class="btn btn-default btn-xs" onclick="makeFullScreen(false);"><i class="fa fa-compress"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<h2>{{$title}}</h2>
|
<h2>{{$title}}</h2>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
|
Reference in New Issue
Block a user