Revert to stable version 3.5.4

This commit is contained in:
Hypolite Petovan 2018-02-11 19:00:01 -05:00
parent 38db18b624
commit 5360f08f42
355 changed files with 21449 additions and 4957 deletions

View file

@ -7,9 +7,6 @@
* Author: Tobias Diekershoff <https://f.diekershoff.de/u/tobias>
*/
use Friendica\Core\Config;
use Friendica\Core\PConfig;
function irc_install() {
register_hook('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
register_hook('plugin_settings', 'addon/irc/irc.php', 'irc_addon_settings');
@ -32,17 +29,17 @@ function irc_addon_settings(&$a,&$s) {
// $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/irc/irc.css' . '" media="all" />' . "\r\n";
/* setting popular channels, auto connect channels */
$sitechats = PConfig::get( local_user(), 'irc','sitechats'); /* popular channels */
$autochans = PConfig::get( local_user(), 'irc','autochans'); /* auto connect chans */
$sitechats = get_pconfig( local_user(), 'irc','sitechats'); /* popular channels */
$autochans = get_pconfig( local_user(), 'irc','autochans'); /* auto connect chans */
$t = get_markup_template( "settings.tpl", "addon/irc/" );
$s .= replace_macros($t, [
$s .= replace_macros($t, array(
'$header' => t('IRC Settings'),
'$info' => t('Here you can change the system wide settings for the channels to automatically join and access via the side bar. Note the changes you do here, only effect the channel selection if you are logged in.'),
'$submit' => t('Save Settings'),
'$autochans' => [ 'autochans', t('Channel(s) to auto connect (comma separated)'), $autochans, t('List of channels that shall automatically connected to when the app is launched.')],
'$sitechats' => [ 'sitechats', t('Popular Channels (comma separated)'), $sitechats, t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') ]
]);
'$autochans' => array( 'autochans', t('Channel(s) to auto connect (comma separated)'), $autochans, t('List of channels that shall automatically connected to when the app is launched.')),
'$sitechats' => array( 'sitechats', t('Popular Channels (comma separated)'), $sitechats, t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') )
));
return;
@ -54,8 +51,8 @@ function irc_addon_settings_post(&$a,&$b) {
return;
if($_POST['irc-submit']) {
PConfig::set( local_user(), 'irc','autochans',trim($_POST['autochans']));
PConfig::set( local_user(), 'irc','sitechats',trim($_POST['sitechats']));
set_pconfig( local_user(), 'irc','autochans',trim($_POST['autochans']));
set_pconfig( local_user(), 'irc','sitechats',trim($_POST['sitechats']));
/* upid pop-up thing */
info( t('IRC settings saved.') . EOL);
}
@ -78,16 +75,16 @@ function irc_content(&$a) {
/* set the list of popular channels */
if (local_user()) {
$sitechats = PConfig::get( local_user(), 'irc', 'sitechats');
$sitechats = get_pconfig( local_user(), 'irc', 'sitechats');
if (!$sitechats)
$sitechats = Config::get('irc', 'sitechats');
$sitechats = get_config('irc', 'sitechats');
} else {
$sitechats = Config::get('irc','sitechats');
$sitechats = get_config('irc','sitechats');
}
if($sitechats)
$chats = explode(',',$sitechats);
else
$chats = ['friendica','chat','chatback','hottub','ircbar','dateroom','debian'];
$chats = array('friendica','chat','chatback','hottub','ircbar','dateroom','debian');
$a->page['aside'] .= '<div class="widget"><h3>' . t('Popular Channels') . '</h3><ul>';
@ -98,11 +95,11 @@ function irc_content(&$a) {
/* setting the channel(s) to auto connect */
if (local_user()) {
$autochans = PConfig::get(local_user(), 'irc', 'autochans');
$autochans = get_pconfig(local_user(), 'irc', 'autochans');
if (!$autochans)
$autochans = Config::get('irc','autochans');
$autochans = get_config('irc','autochans');
} else {
$autochans = Config::get('irc','autochans');
$autochans = get_config('irc','autochans');
}
if($autochans)
$channels = $autochans;
@ -117,7 +114,7 @@ function irc_content(&$a) {
EOT;
return $o;
}
function irc_plugin_admin_post (&$a) {
@ -125,19 +122,19 @@ function irc_plugin_admin_post (&$a) {
return;
if($_POST['irc-submit']) {
Config::set('irc','autochans',trim($_POST['autochans']));
Config::set('irc','sitechats',trim($_POST['sitechats']));
set_config('irc','autochans',trim($_POST['autochans']));
set_config('irc','sitechats',trim($_POST['sitechats']));
/* stupid pop-up thing */
info( t('IRC settings saved.') . EOL);
}
}
function irc_plugin_admin (&$a, &$o) {
$sitechats = Config::get('irc','sitechats'); /* popular channels */
$autochans = Config::get('irc','autochans'); /* auto connect chans */
$sitechats = get_config('irc','sitechats'); /* popular channels */
$autochans = get_config('irc','autochans'); /* auto connect chans */
$t = get_markup_template( "admin.tpl", "addon/irc/" );
$o = replace_macros($t, [
$o = replace_macros($t, array(
'$submit' => t('Save Settings'),
'$autochans' => [ 'autochans', t('Channel(s) to auto connect (comma separated)'), $autochans, t('List of channels that shall automatically connected to when the app is launched.')],
'$sitechats' => [ 'sitechats', t('Popular Channels (comma separated)'), $sitechats, t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') ]
]);
'$autochans' => array( 'autochans', t('Channel(s) to auto connect (comma separated)'), $autochans, t('List of channels that shall automatically connected to when the app is launched.')),
'$sitechats' => array( 'sitechats', t('Popular Channels (comma separated)'), $sitechats, t('List of popular channels, will be displayed at the side and hotlinked for easy joining.') )
));
}