| Server IP : 5.129.245.98 / Your IP : 216.73.217.19 Web Server : Apache/2.4.66 (Debian) System : Linux 1b8c17c336b9 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/content-egg/application/modules/RssFetcher/ |
Upload File : |
<?php
namespace ContentEgg\application\modules\RssFetcher;
defined('\ABSPATH') || exit;
use ContentEgg\application\components\ParserModuleConfig;
/**
* RssFetcherConfig class file
*
* @author keywordrush.com <support@keywordrush.com>
* @link https://www.keywordrush.com
* @copyright Copyright © 2025 keywordrush.com
*/
class RssFetcherConfig extends ParserModuleConfig
{
public function options()
{
$options = array(
'uri' => array(
'title' => 'RSS URL <span class="cegg_required">*</span>',
'description' => __('For getting current keyword use <em>%KEYWORD%</em>.', 'content-egg'),
'callback' => array($this, 'render_input'),
'default' => 'http://www.bing.com/search?format=rss&FORM=RSRE&q=%KEYWORD%',
'validator' => array(
'trim',
array(
'call' => array('\ContentEgg\application\helpers\FormValidator', 'required'),
'when' => 'is_active',
'message' => __('Field "RSS URL" can not be empty', 'content-egg'),
),
),
'section' => 'default',
),
'entries_per_page' => array(
'title' => __('Results', 'content-egg'),
'description' => __('Specify the number of results to display for a single search query', 'content-egg'),
'callback' => array($this, 'render_input'),
'default' => 10,
'validator' => array(
'trim',
'absint',
array(
'call' => array('\ContentEgg\application\helpers\FormValidator', 'less_than_equal_to'),
'arg' => 50,
'message' => __('The field "Results" can not be more than 50.', 'content-egg'),
),
),
'section' => 'default',
),
'entries_per_page_update' => array(
'title' => __('Results for autoupdates ', 'content-egg'),
'description' => __('Maximum number of results returned for keyword autoupdates and other automatic searches.', 'content-egg'),
'callback' => array($this, 'render_input'),
'default' => 5,
'validator' => array(
'trim',
'absint',
array(
'call' => array('\ContentEgg\application\helpers\FormValidator', 'less_than_equal_to'),
'arg' => 50,
'message' => __('Field "Results for autoblogging" can not be more than 50.', 'content-egg'),
),
),
'section' => 'default',
),
'allowed_tags' => array(
'title' => __('Allowed tags', 'content-egg'),
'description' => __('Tags, which are allowed in title and description', 'content-egg'),
'callback' => array($this, 'render_input'),
'default' => '<p><br><img>',
'validator' => array(
'trim',
),
'section' => 'default',
),
);
$parent = parent::options();
unset($parent['featured_image']);
$options = array_merge(parent::options(), $options);
return self::moveRequiredUp($options);
}
}