X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=irc%2Firc.php;h=f400a77ca4da9183a2cd4df1fd2c055954d98c18;hb=e5b0d810e2e04856892612aa294cb727bcd308b4;hp=ef9c3fdaccc22d778d0039a69730f64e2607a19f;hpb=dfa4cfc7cde6c6f755beae5818fe3eee99724c5c;p=friendica-addons.git diff --git a/irc/irc.php b/irc/irc.php index ef9c3fda..f400a77c 100644 --- a/irc/irc.php +++ b/irc/irc.php @@ -1,18 +1,12 @@ +* Author: Tobias Diekershoff */ -/* enable in admin->plugins - * you will then have "irc chatroom" listed at yoursite/apps - * and the app will run at yoursite/irc - * documentation at http://tonybaldwin.me/hax/doku.php?id=friendica:irc - * admin can set popular chans, auto connect chans in settings->plugin settings - */ - 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'); @@ -27,56 +21,50 @@ function irc_uninstall() { function irc_addon_settings(&$a,&$s) { - - - if(! is_site_admin()) + if(! local_user()) return; /* Add our stylesheet to the page so we can make our settings look nice */ - $a->page['htmlhead'] .= '' . "\r\n"; +// $a->page['htmlhead'] .= '' . "\r\n"; /* setting popular channels, auto connect channels */ - $sitechats = get_config('irc','sitechats'); /* popular channels */ - $autochans = get_config('irc','autochans'); /* auto connect chans */ - - $s .= '
'; - $s .= '

' . t('IRC Settings') . '

'; - $s .= '
'; - $s .= ''; - $s .= ''; - $s .= '
'; + $sitechats = get_pconfig( local_user(), 'irc','sitechats'); /* popular channels */ + $autochans = get_pconfig( local_user(), 'irc','autochans'); /* auto connect chans */ - $s .= '
'; - $s .= ''; - $s .= ''; - $s .= '
'; + $t = get_markup_template( "settings.tpl", "addon/irc/" ); + $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' => 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.') ) + )); - $s .= '
'; return; } function irc_addon_settings_post(&$a,&$b) { - if(! is_site_admin()) + if(! local_user()) return; if($_POST['irc-submit']) { - set_config('irc','autochans',trim($_POST['autochans'])); - set_config('irc','sitechats',trim($_POST['sitechats'])); - /* stupid pop-up thing */ + 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); } } function irc_app_menu($a,&$b) { -$b['app_menu'][] = '
' . t('IRC Chatroom') . '
'; + $b['app_menu'][] = '
' . t('IRC Chatroom') . '
'; } function irc_module() { -return; + return; } @@ -86,7 +74,13 @@ function irc_content(&$a) { $o = ''; /* set the list of popular channels */ - $sitechats = get_config('irc','sitechats'); + if (local_user()) { + $sitechats = get_pconfig( local_user(), 'irc', 'sitechats'); + if (!$sitechats) + $sitechats = get_config('irc', 'sitechats'); + } else { + $sitechats = get_config('irc','sitechats'); + } if($sitechats) $chats = explode(',',$sitechats); else @@ -100,7 +94,13 @@ function irc_content(&$a) { $a->page['aside'] .= ''; /* setting the channel(s) to auto connect */ - $autochans = get_config('irc','autochans'); + if (local_user()) { + $autochans = get_pconfig(local_user(), 'irc', 'autochans'); + if (!$autochans) + $autochans = get_config('irc','autochans'); + } else { + $autochans = get_config('irc','autochans'); + } if($autochans) $channels = $autochans; else @@ -110,11 +110,31 @@ function irc_content(&$a) { $o .= <<< EOT

IRC chat

A beginner's guide to using IRC. [en]

- + EOT; return $o; } +function irc_plugin_admin_post (&$a) { + if(! is_site_admin()) + return; + if($_POST['irc-submit']) { + 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 = 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, array( + '$submit' => t('Save Settings'), + '$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.') ) + )); +}