consolidate include/*_selectors.php (not touching acl_selectors for the moment, as it will likely end up with a different disposition)
This commit is contained in:
parent
ac095c89f1
commit
019250eff8
@ -3,7 +3,7 @@ namespace Zotlabs\Module;
|
|||||||
|
|
||||||
require_once('include/Contact.php');
|
require_once('include/Contact.php');
|
||||||
require_once('include/socgraph.php');
|
require_once('include/socgraph.php');
|
||||||
require_once('include/contact_selectors.php');
|
require_once('include/selectors.php');
|
||||||
require_once('include/group.php');
|
require_once('include/group.php');
|
||||||
require_once('include/contact_widgets.php');
|
require_once('include/contact_widgets.php');
|
||||||
require_once('include/zot.php');
|
require_once('include/zot.php');
|
||||||
|
@ -9,7 +9,7 @@ namespace Zotlabs\Module;
|
|||||||
|
|
||||||
require_once('include/Contact.php');
|
require_once('include/Contact.php');
|
||||||
require_once('include/socgraph.php');
|
require_once('include/socgraph.php');
|
||||||
require_once('include/contact_selectors.php');
|
require_once('include/selectors.php');
|
||||||
require_once('include/group.php');
|
require_once('include/group.php');
|
||||||
require_once('include/contact_widgets.php');
|
require_once('include/contact_widgets.php');
|
||||||
require_once('include/zot.php');
|
require_once('include/zot.php');
|
||||||
@ -583,8 +583,6 @@ class Connedit extends \Zotlabs\Web\Controller {
|
|||||||
if(intval($contact['abook_self']))
|
if(intval($contact['abook_self']))
|
||||||
$self = true;
|
$self = true;
|
||||||
|
|
||||||
require_once('include/contact_selectors.php');
|
|
||||||
|
|
||||||
$tpl = get_markup_template("abook_edit.tpl");
|
$tpl = get_markup_template("abook_edit.tpl");
|
||||||
|
|
||||||
if(feature_enabled(local_channel(),'affinity')) {
|
if(feature_enabled(local_channel(),'affinity')) {
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
namespace Zotlabs\Module;
|
namespace Zotlabs\Module;
|
||||||
|
|
||||||
require_once('include/identity.php');
|
require_once('include/identity.php');
|
||||||
|
require_once('include/selectors.php');
|
||||||
|
|
||||||
|
|
||||||
class Profiles extends \Zotlabs\Web\Controller {
|
class Profiles extends \Zotlabs\Web\Controller {
|
||||||
@ -625,7 +626,7 @@ class Profiles extends \Zotlabs\Web\Controller {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once('include/profile_selectors.php');
|
require_once('include/selectors.php');
|
||||||
|
|
||||||
|
|
||||||
$editselect = 'none';
|
$editselect = 'none';
|
||||||
|
@ -7,7 +7,7 @@ namespace Zotlabs\Module;
|
|||||||
|
|
||||||
require_once('include/items.php');
|
require_once('include/items.php');
|
||||||
require_once('include/security.php');
|
require_once('include/security.php');
|
||||||
require_once('include/contact_selectors.php');
|
require_once('include/selectors.php');
|
||||||
require_once('include/acl_selectors.php');
|
require_once('include/acl_selectors.php');
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace Zotlabs\Module;
|
namespace Zotlabs\Module;
|
||||||
require_once('include/contact_selectors.php');
|
|
||||||
|
require_once('include/selectors.php');
|
||||||
require_once('include/Contact.php');
|
require_once('include/Contact.php');
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,97 +0,0 @@
|
|||||||
<?php /** @file */
|
|
||||||
|
|
||||||
|
|
||||||
function contact_profile_assign($current) {
|
|
||||||
|
|
||||||
$o = '';
|
|
||||||
|
|
||||||
$o .= "<select id=\"contact-profile-selector\" name=\"profile_assign\" class=\"form-control\"/>\r\n";
|
|
||||||
|
|
||||||
$r = q("SELECT profile_guid, profile_name FROM `profile` WHERE `uid` = %d",
|
|
||||||
intval($_SESSION['uid']));
|
|
||||||
|
|
||||||
if($r) {
|
|
||||||
foreach($r as $rr) {
|
|
||||||
$selected = (($rr['profile_guid'] == $current) ? " selected=\"selected\" " : "");
|
|
||||||
$o .= "<option value=\"{$rr['profile_guid']}\" $selected >{$rr['profile_name']}</option>\r\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$o .= "</select>\r\n";
|
|
||||||
return $o;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* unused currently
|
|
||||||
|
|
||||||
function contact_reputation($current) {
|
|
||||||
|
|
||||||
$o = '';
|
|
||||||
$o .= "<select id=\"contact-reputation-selector\" name=\"reputation\" />\r\n";
|
|
||||||
|
|
||||||
$rep = array(
|
|
||||||
0 => t('Unknown | Not categorized'),
|
|
||||||
1 => t('Block immediately'),
|
|
||||||
2 => t('Shady, spammer, self-marketer'),
|
|
||||||
3 => t('Known to me, but no opinion'),
|
|
||||||
4 => t('OK, probably harmless'),
|
|
||||||
5 => t('Reputable, has my trust')
|
|
||||||
);
|
|
||||||
|
|
||||||
foreach($rep as $k => $v) {
|
|
||||||
$selected = (($k == $current) ? " selected=\"selected\" " : "");
|
|
||||||
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
|
|
||||||
}
|
|
||||||
$o .= "</select>\r\n";
|
|
||||||
return $o;
|
|
||||||
}
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
function contact_poll_interval($current, $disabled = false) {
|
|
||||||
|
|
||||||
$dis = (($disabled) ? ' disabled="disabled" ' : '');
|
|
||||||
$o = '';
|
|
||||||
$o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
|
|
||||||
|
|
||||||
$rep = array(
|
|
||||||
0 => t('Frequently'),
|
|
||||||
1 => t('Hourly'),
|
|
||||||
2 => t('Twice daily'),
|
|
||||||
3 => t('Daily'),
|
|
||||||
4 => t('Weekly'),
|
|
||||||
5 => t('Monthly')
|
|
||||||
);
|
|
||||||
|
|
||||||
foreach($rep as $k => $v) {
|
|
||||||
$selected = (($k == $current) ? " selected=\"selected\" " : "");
|
|
||||||
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
|
|
||||||
}
|
|
||||||
$o .= "</select>\r\n";
|
|
||||||
return $o;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function network_to_name($s) {
|
|
||||||
|
|
||||||
$nets = array(
|
|
||||||
NETWORK_DFRN => t('Friendica'),
|
|
||||||
NETWORK_FRND => t('Friendica'),
|
|
||||||
NETWORK_OSTATUS => t('OStatus'),
|
|
||||||
NETWORK_GNUSOCIAL => t('GNU-Social'),
|
|
||||||
NETWORK_FEED => t('RSS/Atom'),
|
|
||||||
NETWORK_MAIL => t('Email'),
|
|
||||||
NETWORK_DIASPORA => t('Diaspora'),
|
|
||||||
NETWORK_FACEBOOK => t('Facebook'),
|
|
||||||
NETWORK_ZOT => t('Zot'),
|
|
||||||
NETWORK_LINKEDIN => t('LinkedIn'),
|
|
||||||
NETWORK_XMPP => t('XMPP/IM'),
|
|
||||||
NETWORK_MYSPACE => t('MySpace'),
|
|
||||||
);
|
|
||||||
|
|
||||||
call_hooks('network_to_name', $nets);
|
|
||||||
|
|
||||||
$search = array_keys($nets);
|
|
||||||
$replace = array_values($nets);
|
|
||||||
|
|
||||||
return str_replace($search,$replace,$s);
|
|
||||||
|
|
||||||
}
|
|
@ -2150,3 +2150,29 @@ function get_repository_version($branch = 'master') {
|
|||||||
return '?.?';
|
return '?.?';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function network_to_name($s) {
|
||||||
|
|
||||||
|
$nets = array(
|
||||||
|
NETWORK_DFRN => t('Friendica'),
|
||||||
|
NETWORK_FRND => t('Friendica'),
|
||||||
|
NETWORK_OSTATUS => t('OStatus'),
|
||||||
|
NETWORK_GNUSOCIAL => t('GNU-Social'),
|
||||||
|
NETWORK_FEED => t('RSS/Atom'),
|
||||||
|
NETWORK_MAIL => t('Email'),
|
||||||
|
NETWORK_DIASPORA => t('Diaspora'),
|
||||||
|
NETWORK_FACEBOOK => t('Facebook'),
|
||||||
|
NETWORK_ZOT => t('Zot'),
|
||||||
|
NETWORK_LINKEDIN => t('LinkedIn'),
|
||||||
|
NETWORK_XMPP => t('XMPP/IM'),
|
||||||
|
NETWORK_MYSPACE => t('MySpace'),
|
||||||
|
);
|
||||||
|
|
||||||
|
call_hooks('network_to_name', $nets);
|
||||||
|
|
||||||
|
$search = array_keys($nets);
|
||||||
|
$replace = array_values($nets);
|
||||||
|
|
||||||
|
return str_replace($search,$replace,$s);
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -1,6 +1,49 @@
|
|||||||
<?php /** @file */
|
<?php /** @file */
|
||||||
|
|
||||||
|
|
||||||
|
function contact_profile_assign($current) {
|
||||||
|
|
||||||
|
$o = '';
|
||||||
|
|
||||||
|
$o .= "<select id=\"contact-profile-selector\" name=\"profile_assign\" class=\"form-control\"/>\r\n";
|
||||||
|
|
||||||
|
$r = q("SELECT profile_guid, profile_name FROM `profile` WHERE `uid` = %d",
|
||||||
|
intval($_SESSION['uid']));
|
||||||
|
|
||||||
|
if($r) {
|
||||||
|
foreach($r as $rr) {
|
||||||
|
$selected = (($rr['profile_guid'] == $current) ? " selected=\"selected\" " : "");
|
||||||
|
$o .= "<option value=\"{$rr['profile_guid']}\" $selected >{$rr['profile_name']}</option>\r\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$o .= "</select>\r\n";
|
||||||
|
return $o;
|
||||||
|
}
|
||||||
|
|
||||||
|
function contact_poll_interval($current, $disabled = false) {
|
||||||
|
|
||||||
|
$dis = (($disabled) ? ' disabled="disabled" ' : '');
|
||||||
|
$o = '';
|
||||||
|
$o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
|
||||||
|
|
||||||
|
$rep = array(
|
||||||
|
0 => t('Frequently'),
|
||||||
|
1 => t('Hourly'),
|
||||||
|
2 => t('Twice daily'),
|
||||||
|
3 => t('Daily'),
|
||||||
|
4 => t('Weekly'),
|
||||||
|
5 => t('Monthly')
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach($rep as $k => $v) {
|
||||||
|
$selected = (($k == $current) ? " selected=\"selected\" " : "");
|
||||||
|
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
|
||||||
|
}
|
||||||
|
$o .= "</select>\r\n";
|
||||||
|
return $o;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function gender_selector($current="",$suffix="") {
|
function gender_selector($current="",$suffix="") {
|
||||||
$o = '';
|
$o = '';
|
||||||
$select = array('', t('Male'), t('Female'), t('Currently Male'), t('Currently Female'), t('Mostly Male'), t('Mostly Female'), t('Transgender'), t('Intersex'), t('Transsexual'), t('Hermaphrodite'), t('Neuter'), t('Non-specific'), t('Other'), t('Undecided'));
|
$select = array('', t('Male'), t('Female'), t('Currently Male'), t('Currently Female'), t('Mostly Male'), t('Mostly Female'), t('Transgender'), t('Intersex'), t('Transsexual'), t('Hermaphrodite'), t('Neuter'), t('Non-specific'), t('Other'), t('Undecided'));
|
||||||
@ -108,3 +151,4 @@ function marital_selector_min($current="",$suffix="") {
|
|||||||
$o .= '</select>';
|
$o .= '</select>';
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue
Block a user