| 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/AE/ |
Upload File : |
<?php
namespace ContentEgg\application\modules\AE;
defined('\ABSPATH') || exit;
use ContentEgg\application\components\AffiliateParserModuleConfig;
/**
* AEConfig class file
*
* @author keywordrush.com <support@keywordrush.com>
* @link https://www.keywordrush.com
* @copyright Copyright © 2025 keywordrush.com
*/
class AEConfig extends AffiliateParserModuleConfig
{
public function options()
{
$options = array(
'deeplink' => array(
'title' => __('Deeplink', 'content-egg') . ' **',
'description' => sprintf(
__('Set up your affiliate links using a deeplink or affiliate ID in URLs. For detailed instructions, <a target="_blank" href="%s">click here</a>.', 'content-egg'),
'https://ce-docs.keywordrush.com/modules/deeplink-settings'
),
'callback' => array($this, 'render_input'),
'default' => '',
'validator' => array('trim'),
'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' => 3,
'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 Updates and Autoblogging', 'content-egg'),
'description' => __('Specify the number of results for automatic updates and autoblogging.', 'content-egg'),
'callback' => array($this, 'render_input'),
'default' => 3,
'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',
),
'reviews_as_comments' => array(
'title' => __('Reviews as post comments', 'content-egg'),
'description' => __('Save user reviews as post comments.', 'content-egg'),
'callback' => array($this, 'render_checkbox'),
'default' => false,
'section' => 'default',
),
'save_img' => array(
'title' => __('Save images', 'content-egg'),
'description' => __('Save images on local server.', 'content-egg'),
'callback' => array($this, 'render_checkbox'),
'default' => false,
'section' => 'default',
),
'show_small_logos' => array(
'title' => __('Small logos', 'content-egg'),
'callback' => array($this, 'render_dropdown'),
'dropdown_options' => array(
'true' => __('Show small logos', 'content-egg'),
'false' => __('Hide small logos', 'content-egg'),
),
'default' => 'true',
),
'show_large_logos' => array(
'title' => __('Large logos', 'content-egg'),
'callback' => array($this, 'render_dropdown'),
'dropdown_options' => array(
'true' => __('Show large logos', 'content-egg'),
'false' => __('Hide large logos', 'content-egg'),
),
'default' => 'true',
),
);
$parent = parent::options();
$parent['ttl']['default'] = 4320000;
$parent['ttl_items']['default'] = 2592000;
$options = array_merge($parent, $options);
return self::moveRequiredUp($options);
}
}