From 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 18 Apr 2016 20:38:38 -0700 Subject: module updates --- mod/sources.php | 168 -------------------------------------------------------- 1 file changed, 168 deletions(-) delete mode 100644 mod/sources.php (limited to 'mod/sources.php') diff --git a/mod/sources.php b/mod/sources.php deleted file mode 100644 index 6ea0743aa..000000000 --- a/mod/sources.php +++ /dev/null @@ -1,168 +0,0 @@ - t('Channel Sources'), - '$desc' => t('Manage remote sources of content for your channel.'), - '$new' => t('New Source'), - '$sources' => $r - )); - return $o; - } - - if(argc() == 2 && argv(1) === 'new') { - // TODO add the words 'or RSS feed' and corresponding code to manage feeds and frequency - - $o = replace_macros(get_markup_template('sources_new.tpl'), array( - '$title' => t('New Source'), - '$desc' => t('Import all or selected content from the following channel into this channel and distribute it according to your channel settings.'), - '$words' => array( 'words', t('Only import content with these words (one per line)'),'',t('Leave blank to import all public content')), - '$name' => array( 'name', t('Channel Name'), '', ''), - '$submit' => t('Submit') - )); - return $o; - - } - - if(argc() == 2 && intval(argv(1))) { - // edit source - $r = q("select source.*, xchan.* from source left join xchan on src_xchan = xchan_hash where src_id = %d and src_channel_id = %d limit 1", - intval(argv(1)), - intval(local_channel()) - ); - if($r) { - $x = q("select abook_id from abook where abook_xchan = '%s' and abook_channel = %d limit 1", - dbesc($r[0]['src_xchan']), - intval(local_channel()) - ); - } - if(! $r) { - notice( t('Source not found.') . EOL); - return ''; - } - - $r[0]['src_patt'] = htmlspecialchars($r[0]['src_patt'], ENT_QUOTES,'UTF-8'); - - $o = replace_macros(get_markup_template('sources_edit.tpl'), array( - '$title' => t('Edit Source'), - '$drop' => t('Delete Source'), - '$id' => $r[0]['src_id'], - '$desc' => t('Import all or selected content from the following channel into this channel and distribute it according to your channel settings.'), - '$words' => array( 'words', t('Only import content with these words (one per line)'),$r[0]['src_patt'],t('Leave blank to import all public content')), - '$xchan' => $r[0]['src_xchan'], - '$abook' => $x[0]['abook_id'], - '$name' => array( 'name', t('Channel Name'), $r[0]['xchan_name'], ''), - '$submit' => t('Submit') - )); - return $o; - - } - - if(argc() == 3 && intval(argv(1)) && argv(2) === 'drop') { - $r = q("select * from source where src_id = %d and src_channel_id = %d limit 1", - intval(argv(1)), - intval(local_channel()) - ); - if(! $r) { - notice( t('Source not found.') . EOL); - return ''; - } - $r = q("delete from source where src_id = %d and src_channel_id = %d", - intval(argv(1)), - intval(local_channel()) - ); - if($r) - info( t('Source removed') . EOL); - else - notice( t('Unable to remove source.') . EOL); - - goaway(z_root() . '/sources'); - - } - - // shouldn't get here. - -} \ No newline at end of file -- cgit v1.2.3