update php code to PSR-2 and short array

master
Jean-Christian Paul Denis 2021-08-24 22:05:23 +02:00
parent 450ada59a1
commit 64e42494ca
14 changed files with 1668 additions and 1740 deletions

View File

@ -2,12 +2,14 @@ enhancePostContent xxxx.xx.xx
* Not added priority on filters for replacement order
* Not added priority on lists of filters for replacement order
* Not added auto-find post title in content
* move settings from plugin to blog
enhancePostContent 2021.08.xx
* switch to Dotclear 2.19
* switch to php 7.3+ and php 8.0.x
* switch to Github
* update license
* update php code to PSR-2 and short array
enhancePostContent 2013.11.08
* Switch to Dotclear 2.6 (admin styles and settings)

View File

@ -12,50 +12,49 @@
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
return null;
}
require dirname(__FILE__).'/_widgets.php';
require dirname(__FILE__) . '/_widgets.php';
# Admin menu
$_menu['Blog']->addItem(
__('Enhance post content'),
'plugin.php?p=enhancePostContent',
'index.php?pf=enhancePostContent/icon.png',
preg_match(
'/plugin.php\?p=enhancePostContent(&.*)?$/',
$_SERVER['REQUEST_URI']
),
$core->auth->check('contentadmin', $core->blog->id)
__('Enhance post content'),
'plugin.php?p=enhancePostContent',
'index.php?pf=enhancePostContent/icon.png',
preg_match(
'/plugin.php\?p=enhancePostContent(&.*)?$/',
$_SERVER['REQUEST_URI']
),
$core->auth->check('contentadmin', $core->blog->id)
);
$core->addBehavior(
'adminDashboardFavorites',
array('epcAdminBehaviors', 'adminDashboardFavorites')
'adminDashboardFavorites',
['epcAdminBehaviors', 'adminDashboardFavorites']
);
class epcAdminBehaviors
{
public static function adminDashboardFavorites($core, $favs)
{
$favs->register('enhancePostContent', array(
'title' => __('Enhance post content'),
'url' => 'plugin.php?p=enhancePostContent',
'small-icon' => 'index.php?pf=enhancePostContent/icon.png',
'large-icon' => 'index.php?pf=enhancePostContent/icon-big.png',
'permissions' => $core->auth->check('contentadmin', $core->blog->id),
'active_cb' => array(
'epcAdminBehaviors',
'adminDashboardFavoritesActive'
)
));
}
public static function adminDashboardFavorites($core, $favs)
{
$favs->register('enhancePostContent', [
'title' => __('Enhance post content'),
'url' => 'plugin.php?p=enhancePostContent',
'small-icon' => 'index.php?pf=enhancePostContent/icon.png',
'large-icon' => 'index.php?pf=enhancePostContent/icon-big.png',
'permissions' => $core->auth->check('contentadmin', $core->blog->id),
'active_cb' => [
'epcAdminBehaviors',
'adminDashboardFavoritesActive'
]
]);
}
public static function adminDashboardFavoritesActive($request, $params)
{
return $request == 'plugin.php'
&& isset($params['p'])
&& $params['p'] == 'enhancePostContent';
}
}
public static function adminDashboardFavoritesActive($request, $params)
{
return $request == 'plugin.php'
&& isset($params['p'])
&& $params['p'] == 'enhancePostContent';
}
}

View File

@ -12,24 +12,19 @@
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) {
return null;
return null;
}
$this->registerModule(
/* Name */
"Enhance post content",
/* Description*/
"Add features to words in post content",
/* Author */
"Jean-Christian Denis",
/* Version */
'2013.11.08',
array(
'permissions' => 'contentadmin',
'type' => 'plugin',
'dc_min' => '2.6',
'support' => 'http://jcd.lv/q=enhancePostContent',
'details' => 'http://plugins.dotaddict.org/dc2/details/enhancePostContent'
)
);
'Enhance post content',
'Add features to words in post content',
'Jean-Christian Denis and Contributors',
'2021.08.0',
[
'permissions' => 'contentadmin',
'type' => 'plugin',
'dc_min' => '2.18',
'support' => 'https://github.com/JcDenis/enhancePostContent',
'details' => 'https://plugins.dotaddict.org/dc2/details/enhancePostContent'
]
);

View File

@ -12,93 +12,89 @@
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
return null;
}
$dc_min = '2.6';
$dc_min = '2.18';
$mod_id = 'enhancePostContent';
$new_version = $core->plugins->moduleInfo($mod_id, 'version');
$old_version = $core->getVersion($mod_id);
if (version_compare($old_version, $new_version, '>=')) {
return null;
return null;
}
try
{
# Check Dotclear version
if (!method_exists('dcUtils', 'versionsCompare')
|| dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)) {
throw new Exception(sprintf(
'%s requires Dotclear %s', $mod_id, $dc_min
));
}
# Database
$s = new dbStruct($core->con, $core->prefix);
$s->epc
->epc_id ('bigint', 0, false)
->blog_id ('varchar', 32, false)
->epc_type('varchar', 32, false, "'epc'")
->epc_filter('varchar', 64, false)
->epc_key('varchar', 255, false)
->epc_value('text', 0, false)
->epc_upddt('timestamp', 0, false, 'now()')
->primary('pk_epc', 'epc_id')
->index('idx_epc_blog_id', 'btree', 'blog_id')
->index('idx_epc_type', 'btree', 'epc_type')
->index('idx_epc_filter', 'btree', 'epc_filter')
->index('idx_epc_key', 'btree', 'epc_key');
$si = new dbStruct($core->con, $core->prefix);
$changes = $si->synchronize($s);
$s = null;
# Settings
$core->blog->settings->addNamespace($mod_id);
$s = $core->blog->settings->enhancePostContent;
$s->put('enhancePostContent_active', false,'boolean', 'Enable enhancePostContent', false, true);
$s->put('enhancePostContent_list_sortby', 'epc_key', 'string', 'Admin records list field order', false, true);
$s->put('enhancePostContent_list_order', 'desc', 'string', 'Admin records list order', false, true);
$s->put('enhancePostContent_list_nb', 20, 'integer', 'Admin records list nb per page', false, true);
$s->put('enhancePostContent_allowedtplvalues', serialize(libEPC::defaultAllowedTplValues()), 'string', 'List of allowed template values', false, true);
$s->put('enhancePostContent_allowedpubpages', serialize(libEPC::defaultAllowedPubPages()), 'string', 'List of allowed template pages', false, true);
# Filters settings
$filters = libEPC::defaultFilters();
foreach($filters as $name => $filter) {
# Only editable options
$opt = array(
'nocase' => $filter['nocase'],
'plural' => $filter['plural'],
'style' => $filter['style'],
'notag' => $filter['notag'],
'tplValues' => $filter['tplValues'],
'pubPages' => $filter['pubPages']
);
$s->put('enhancePostContent_'.$name, serialize($opt), 'string', 'Settings for '.$name, false, true);
# only tables
if (isset($filter['list'])) {
$s->put('enhancePostContent_'.$name.'List', serialize($filter['list']), 'string', 'List for '.$name, false, true);
}
}
try {
# Check Dotclear version
if (!method_exists('dcUtils', 'versionsCompare')
|| dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)) {
throw new Exception(sprintf(
'%s requires Dotclear %s', $mod_id, $dc_min
));
}
# Move old filters lists from settings to database
if ($old_version && version_compare('0.6.6', $old_version, '>=')) {
include_once dirname(__FILE__).'/inc/lib.epc.update.php';
}
# Database
$s = new dbStruct($core->con, $core->prefix);
$s->epc
->epc_id ('bigint', 0, false)
->blog_id ('varchar', 32, false)
->epc_type('varchar', 32, false, "'epc'")
->epc_filter('varchar', 64, false)
->epc_key('varchar', 255, false)
->epc_value('text', 0, false)
->epc_upddt('timestamp', 0, false, 'now()')
# Version
$core->setVersion($mod_id, $new_version);
->primary('pk_epc', 'epc_id')
->index('idx_epc_blog_id', 'btree', 'blog_id')
->index('idx_epc_type', 'btree', 'epc_type')
->index('idx_epc_filter', 'btree', 'epc_filter')
->index('idx_epc_key', 'btree', 'epc_key');
return true;
}
catch (Exception $e) {
$core->error->add($e->getMessage());
$si = new dbStruct($core->con, $core->prefix);
$changes = $si->synchronize($s);
$s = null;
# Settings
$core->blog->settings->addNamespace($mod_id);
$s = $core->blog->settings->enhancePostContent;
$s->put('enhancePostContent_active', false,'boolean', 'Enable enhancePostContent', false, true);
$s->put('enhancePostContent_list_sortby', 'epc_key', 'string', 'Admin records list field order', false, true);
$s->put('enhancePostContent_list_order', 'desc', 'string', 'Admin records list order', false, true);
$s->put('enhancePostContent_list_nb', 20, 'integer', 'Admin records list nb per page', false, true);
$s->put('enhancePostContent_allowedtplvalues', serialize(libEPC::defaultAllowedTplValues()), 'string', 'List of allowed template values', false, true);
$s->put('enhancePostContent_allowedpubpages', serialize(libEPC::defaultAllowedPubPages()), 'string', 'List of allowed template pages', false, true);
# Filters settings
$filters = libEPC::defaultFilters();
foreach($filters as $name => $filter) {
# Only editable options
$opt = [
'nocase' => $filter['nocase'],
'plural' => $filter['plural'],
'style' => $filter['style'],
'notag' => $filter['notag'],
'tplValues' => $filter['tplValues'],
'pubPages' => $filter['pubPages']
];
$s->put('enhancePostContent_' . $name, serialize($opt), 'string', 'Settings for ' . $name, false, true);
# only tables
if (isset($filter['list'])) {
$s->put('enhancePostContent_' . $name . 'List', serialize($filter['list']), 'string', 'List for ' . $name, false, true);
}
}
# Move old filters lists from settings to database
if ($old_version && version_compare('0.6.6', $old_version, '>=')) {
include_once dirname(__FILE__) . '/inc/lib.epc.update.php';
}
# Version
$core->setVersion($mod_id, $new_version);
return true;
} catch (Exception $e) {
$core->error->add($e->getMessage());
}
return false;
return false;

View File

@ -12,11 +12,10 @@
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) {
return null;
return null;
}
$d = dirname(__FILE__).'/inc/';
$d = dirname(__FILE__) . '/inc/';
$__autoload['libEPC'] = $d.'lib.epc.php';
$__autoload['epcRecords'] = $d.'lib.epc.records.php';
$__autoload['libEPC'] = $d . 'lib.epc.php';
$__autoload['epcRecords'] = $d . 'lib.epc.records.php';

View File

@ -12,24 +12,23 @@
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) {
return null;
return null;
}
require dirname(__FILE__).'/_widgets.php';
require dirname(__FILE__) . '/_widgets.php';
$core->blog->settings->addNamespace('enhancePostContent');
if ($core->blog->settings->enhancePostContent->enhancePostContent_active) {
$core->addBehavior(
'publicHeadContent',
array('publicEnhancePostContent', 'publicHeadContent')
);
$core->addBehavior(
'publicBeforeContentFilter',
array('publicEnhancePostContent', 'publicContentFilter')
);
$core->addBehavior(
'publicHeadContent',
['publicEnhancePostContent', 'publicHeadContent']
);
$core->addBehavior(
'publicBeforeContentFilter',
['publicEnhancePostContent', 'publicContentFilter']
);
}
/**
@ -39,73 +38,71 @@ if ($core->blog->settings->enhancePostContent->enhancePostContent_active) {
*/
class publicEnhancePostContent
{
/**
* Add filters CSS to page header
*
* @param dcCore $core dcCore instance
*/
public static function publicHeadContent(dcCore $core)
{
$filters = libEPC::blogFilters();
foreach($filters as $name => $filter) {
/**
* Add filters CSS to page header
*
* @param dcCore $core dcCore instance
*/
public static function publicHeadContent(dcCore $core)
{
$filters = libEPC::blogFilters();
if (empty($filter['class'])
|| empty($filter['style'])
) {
continue;
}
foreach($filters as $name => $filter) {
$res = '';
foreach($filter['class'] as $k => $class) {
$style = html::escapeHTML(trim($filter['style'][$k]));
if ('' != $style) {
$res .= $class." {".$style."} ";
}
}
if (empty($filter['class'])
|| empty($filter['style'])) {
continue;
}
if (!empty($res)) {
echo
"\n<!-- CSS for enhancePostContent ".$name." --> \n".
"<style type=\"text/css\"> ".$res."</style> \n";
}
}
}
$res = '';
foreach($filter['class'] as $k => $class) {
$style = html::escapeHTML(trim($filter['style'][$k]));
if ('' != $style) {
$res .= $class . " {" . $style . "} ";
}
}
/**
* Filter template blocks content
*
* @param dcCore $core dcCore instance
* @param string $tag Tempalte block name
* @param array $args Tempalte Block arguments
*/
public static function publicContentFilter(dcCore $core, $tag, $args)
{
$filters = libEPC::blogFilters();
$records = new epcRecords($core);
foreach($filters as $name => $filter) {
if (!empty($res)) {
echo
"\n<!-- CSS for enhancePostContent " . $name . " --> \n" .
"<style type=\"text/css\"> " . $res . "</style> \n";
}
}
}
if (!isset($filter['publicContentFilter'])
|| !is_callable($filter['publicContentFilter'])
|| !libEPC::testContext($tag,$args,$filter)
) {
continue;
}
if ($filter['has_list']) {
$filter['list'] = $records->getRecords(array(
'epc_filter' => $name)
);
if ($filter['list']->isEmpty()) {
continue;
}
}
/**
* Filter template blocks content
*
* @param dcCore $core dcCore instance
* @param string $tag Tempalte block name
* @param array $args Tempalte Block arguments
*/
public static function publicContentFilter(dcCore $core, $tag, $args)
{
$filters = libEPC::blogFilters();
$records = new epcRecords($core);
call_user_func_array(
$filter['publicContentFilter'],
array($core, $filter, $tag, $args)
);
}
}
}
foreach($filters as $name => $filter) {
if (!isset($filter['publicContentFilter'])
|| !is_callable($filter['publicContentFilter'])
|| !libEPC::testContext($tag,$args,$filter)) {
continue;
}
if ($filter['has_list']) {
$filter['list'] = $records->getRecords(array(
'epc_filter' => $name)
);
if ($filter['list']->isEmpty()) {
continue;
}
}
call_user_func_array(
$filter['publicContentFilter'],
[$core, $filter, $tag, $args]
);
}
}
}

View File

@ -11,48 +11,48 @@
#
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_CONTEXT_ADMIN')){return;}
if (!defined('DC_CONTEXT_ADMIN')){
return;
}
$this->addUserAction(
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'enhancePostContent',
/* description */ __('delete all settings')
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'enhancePostContent',
/* description */ __('delete all settings')
);
$this->addUserAction(
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ __('delete plugin files')
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ __('delete plugin files')
);
$this->addUserAction(
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ __('delete the version number')
);
$this->addDirectAction(
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'enhancePostContent',
/* description */ sprintf(__('delete all %s settings'),'enhancePostContent')
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ __('delete the version number')
);
$this->addDirectAction(
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ sprintf(__('delete %s plugin files'),'enhancePostContent')
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'enhancePostContent',
/* description */ sprintf(__('delete all %s settings'), 'enhancePostContent')
);
$this->addDirectAction(
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ sprintf(__('delete %s version number'),'enhancePostContent')
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ sprintf(__('delete %s plugin files'), 'enhancePostContent')
);
?>
$this->addDirectAction(
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'enhancePostContent',
/* description */ sprintf(__('delete %s version number'), 'enhancePostContent')
);

View File

@ -12,13 +12,12 @@
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) {
return null;
return null;
}
$core->addBehavior(
'initWidgets',
array('enhancePostContentWidget', 'adminContentList')
'initWidgets',
['enhancePostContentWidget', 'adminContentList']
);
/**
@ -28,193 +27,186 @@ $core->addBehavior(
*/
class enhancePostContentWidget
{
/**
* Admin part for widget that show extracted content
*
* @param dcWidgets $w dcWidgets instance
*/
public static function adminContentList($w)
{
global $core;
$w->create(
'epclist',
__('Enhance post content'),
array('enhancePostContentWidget', 'publicContentList'),
null,
__('List filtered contents.')
);
# Title
$w->epclist->setting(
'title',
__('Title:'),
__('In this article'),
'text'
);
# Text
$w->epclist->setting(
'text',
__('Description:'),
'',
'text'
);
# Type
$filters = libEPC::blogFilters();
$types = array();
foreach($filters as $name => $filter)
{
if (!isset($filter['widgetListFilter'])
|| !is_callable($filter['widgetListFilter'])
) {
continue;
}
/**
* Admin part for widget that show extracted content
*
* @param dcWidgets $w dcWidgets instance
*/
public static function adminContentList($w)
{
global $core;
$types[__($name)] = $name;
}
$w->epclist->setting(
'type',
__('Type:'),
'Definition',
'combo',
$types
);
# Content
$contents = libEPC::defaultAllowedWidgetValues();
foreach($contents as $k => $v) {
$w->epclist->setting(
'content'.$v['id'],
sprintf(__('Enable filter on %s'), __($k)),
1,
'check'
);
}
# Case sensitive
$w->epclist->setting(
'nocase',
__('Search case insensitive'),
0,
'check'
);
# Plural
$w->epclist->setting(
'plural',
__('Search also plural'),
0,
'check'
);
# Show count
$w->epclist->setting(
'show_total',
__('Show the number of appearance'),
1,
'check'
);
# widget option - content only
$w->epclist->setting(
'content_only',
__('Content only'),
0,
'check'
);
# widget option - additionnal CSS
$w->epclist->setting(
'class',
__('CSS class:'),
''
);
}
$w->create(
'epclist',
__('Enhance post content'),
['enhancePostContentWidget', 'publicContentList'],
null,
__('List filtered contents.')
);
# Title
$w->epclist->setting(
'title',
__('Title:'),
__('In this article'),
'text'
);
# Text
$w->epclist->setting(
'text',
__('Description:'),
'',
'text'
);
# Type
$filters = libEPC::blogFilters();
$types = [];
foreach($filters as $name => $filter) {
if (!isset($filter['widgetListFilter'])
|| !is_callable($filter['widgetListFilter'])) {
continue;
}
/**
* Public part for widget that show extracted content
*
* @param dcWidget $w dcWidget instance
*/
public static function publicContentList($w)
{
global $core, $_ctx;
$types[__($name)] = $name;
}
$w->epclist->setting(
'type',
__('Type:'),
'Definition',
'combo',
$types
);
# Content
$contents = libEPC::defaultAllowedWidgetValues();
foreach($contents as $k => $v) {
$w->epclist->setting(
'content' . $v['id'],
sprintf(__('Enable filter on %s'), __($k)),
1,
'check'
);
}
# Case sensitive
$w->epclist->setting(
'nocase',
__('Search case insensitive'),
0,
'check'
);
# Plural
$w->epclist->setting(
'plural',
__('Search also plural'),
0,
'check'
);
# Show count
$w->epclist->setting(
'show_total',
__('Show the number of appearance'),
1,
'check'
);
# widget option - content only
$w->epclist->setting(
'content_only',
__('Content only'),
0,
'check'
);
# widget option - additionnal CSS
$w->epclist->setting(
'class',
__('CSS class:'),
''
);
}
$core->blog->settings->addNamespace('enhancePostContent');
/**
* Public part for widget that show extracted content
*
* @param dcWidget $w dcWidget instance
*/
public static function publicContentList($w)
{
global $core, $_ctx;
# Page
if (!$core->blog->settings->enhancePostContent->enhancePostContent_active
|| !in_array($_ctx->current_tpl,array('post.html','page.html'))
) {
return null;
}
$core->blog->settings->addNamespace('enhancePostContent');
# Content
$content = '';
$allowedwidgetvalues = libEPC::defaultAllowedWidgetValues();
foreach($allowedwidgetvalues as $k => $v) {
# Page
if (!$core->blog->settings->enhancePostContent->enhancePostContent_active
|| !in_array($_ctx->current_tpl, ['post.html', 'page.html'])) {
return null;
}
$ns = 'content'.$v['id'];
if ($w->$ns && is_callable($v['callback'])) {
# Content
$content = '';
$allowedwidgetvalues = libEPC::defaultAllowedWidgetValues();
foreach($allowedwidgetvalues as $k => $v) {
$content .= call_user_func_array(
$v['callback'],
array($core,$w)
);
}
}
$ns = 'content' . $v['id'];
if ($w->$ns && is_callable($v['callback'])) {
if (empty($content)) {
$content .= call_user_func_array(
$v['callback'],
[$core, $w]
);
}
}
return null;
}
if (empty($content)) {
return null;
}
# Filter
$list = array();
$filters = libEPC::blogFilters();
# Filter
$list = [];
$filters = libEPC::blogFilters();
if (isset($filters[$w->type])
&& isset($filters[$w->type]['widgetListFilter'])
&& is_callable($filters[$w->type]['widgetListFilter'])
) {
$filters[$w->type]['nocase'] = $w->nocase;
$filters[$w->type]['plural'] = $w->plural;
if (isset($filters[$w->type])
&& isset($filters[$w->type]['widgetListFilter'])
&& is_callable($filters[$w->type]['widgetListFilter'])) {
$filters[$w->type]['nocase'] = $w->nocase;
$filters[$w->type]['plural'] = $w->plural;
if ($filters[$w->type]['has_list']) {
$records = new epcRecords($core);
$filters[$w->type]['list'] = $records->getRecords(
array('epc_filter' => $w->type)
);
}
if ($filters[$w->type]['has_list']) {
$records = new epcRecords($core);
$filters[$w->type]['list'] = $records->getRecords(
['epc_filter' => $w->type]
);
}
call_user_func_array(
$filters[$w->type]['widgetListFilter'],
array($core, $filters[$w->type], $content, $w, &$list)
);
}
call_user_func_array(
$filters[$w->type]['widgetListFilter'],
[$core, $filters[$w->type], $content, $w, &$list]
);
}
if (empty($list)) {
if (empty($list)) {
return null;
}
return null;
}
# Parse result
$res = '';
foreach($list as $line) {
if (empty($line['matches'][0]['match'])) {
continue;
}
# Parse result
$res = '';
foreach($list as $line) {
if (empty($line['matches'][0]['match'])) {
continue;
}
$res .=
'<li>' . $line['matches'][0]['match'] .
($w->show_total ? ' (' . $line['total'] .')' : '') .
'</li>';
}
$res .=
'<li>'.$line['matches'][0]['match'].
($w->show_total ? ' ('.$line['total'].')' : '').
'</li>';
}
if (empty($res)) {
return null;
}
if (empty($res)) {
return null;
}
return
($w->content_only ? '' : '<div class="epc-widgetlist'.
($w->class ? ' '.html::escapeHTML($w->class) : '').'"">').
($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : '').
($w->text ? '<p>'.html::escapeHTML($w->text).'</p>' : '').
'<ul>'.$res.'</ul>'.
($w->content_only ? '' : '</div>');
}
}
return
($w->content_only ? '' : '<div class="epc-widgetlist' .
($w->class ? ' ' . html::escapeHTML($w->class) : '') . '"">') .
($w->title ? '<h2>' . html::escapeHTML($w->title) . '</h2>' : '') .
($w->text ? '<p>' . html::escapeHTML($w->text) . '</p>' : '') .
'<ul>' . $res . '</ul>' .
($w->content_only ? '' : '</div>');
}
}

File diff suppressed because it is too large Load Diff

View File

@ -13,212 +13,179 @@
class epcRecords
{
public $core;
public $con;
public $table;
public $blog;
public function __construct($core)
{
$this->core = $core;
$this->con = $core->con;
$this->table = $core->prefix.'epc';
$this->blog = $core->con->escape($core->blog->id);
}
public function getRecords($params,$count_only=false)
{
if ($count_only)
{
$strReq = 'SELECT count(E.epc_id) ';
}
else
{
$content_req = '';
if (!empty($params['columns']) && is_array($params['columns']))
{
$content_req .= implode(', ',$params['columns']).', ';
}
$strReq =
'SELECT E.epc_id, E.blog_id, E.epc_type, E.epc_upddt, '.
$content_req.
'E.epc_filter, E.epc_key, E.epc_value ';
}
$strReq .=
'FROM '.$this->table.' E ';
if (!empty($params['from']))
{
$strReq .= $params['from'].' ';
}
$strReq .= "WHERE E.blog_id = '".$this->blog."' ";
if (isset($params['epc_type']))
{
if (is_array($params['epc_type']) && !empty($params['epc_type']))
{
$strReq .= 'AND E.epc_type '.$this->con->in($params['epc_type']);
}
elseif ($params['epc_type'] != '')
{
$strReq .= "AND E.epc_type = '".$this->con->escape($params['epc_type'])."' ";
}
}
else
{
$strReq .= "AND E.epc_type = 'epc' ";
}
if (isset($params['epc_filter']))
{
if (is_array($params['epc_filter']) && !empty($params['epc_filter']))
{
$strReq .= 'AND E.epc_filter '.$this->con->in($params['epc_filter']);
}
elseif ($params['epc_filter'] != '')
{
$strReq .= "AND E.epc_filter = '".$this->con->escape($params['epc_filter'])."' ";
}
}
if (!empty($params['epc_id']))
{
if (is_array($params['epc_id']))
{
array_walk($params['epc_id'],create_function('&$v,$k','if($v!==null){$v=(integer)$v;}'));
}
else
{
$params['epc_id'] = array((integer) $params['epc_id']);
}
$strReq .= 'AND E.epc_id '.$this->con->in($params['epc_id']);
}
if (!empty($params['sql']))
{
$strReq .= $params['sql'].' ';
}
if (!$count_only)
{
if (!empty($params['order']))
{
$strReq .= 'ORDER BY '.$this->con->escape($params['order']).' ';
}
else
{
$strReq .= 'ORDER BY E.epc_key ASC ';
}
}
if (!$count_only && !empty($params['limit']))
{
$strReq .= $this->con->limit($params['limit']);
}
return $this->con->select($strReq);
}
public function addRecord($cur)
{
$this->con->writeLock($this->table);
try
{
$cur->epc_id = $this->getNextId();
$cur->blog_id = $this->blog;
$cur->epc_upddt = date('Y-m-d H:i:s');
$this->getCursor($cur);
$cur->insert();
$this->con->unlock();
}
catch (Exception $e)
{
$this->con->unlock();
throw $e;
}
$this->trigger();
# --BEHAVIOR-- enhancePostContentAfterAddRecord
$this->core->callBehavior('enhancePostContentAfterAddRecord',$cur);
return $cur->epc_id;
}
public function updRecord($id,$cur)
{
$id = (integer) $id;
if (empty($id))
{
throw new Exception(__('No such record ID'));
}
$cur->epc_upddt = date('Y-m-d H:i:s');
$cur->update("WHERE epc_id = ".$id." AND blog_id = '".$this->blog."' ");
$this->trigger();
# --BEHAVIOR-- enhancePostContentAfterUpdRecord
$this->core->callBehavior('enhancePostContentAfterUpdRecord',$cur,$id);
}
public $core;
public $con;
public $table;
public $blog;
public function delRecord($id)
{
$id = (integer) $id;
if (empty($id)) {
throw new Exception(__('No such record ID'));
}
public function __construct($core)
{
$this->core = $core;
$this->con = $core->con;
$this->table = $core->prefix . 'epc';
$this->blog = $core->con->escape($core->blog->id);
}
# --BEHAVIOR-- enhancePostContentBeforeDelRecord
$this->core->callBehavior('enhancePostContentbeforeDelRecord',$id);
public function getRecords($params, $count_only = false)
{
if ($count_only) {
$strReq = 'SELECT count(E.epc_id) ';
} else {
$content_req = '';
if (!empty($params['columns']) && is_array($params['columns'])) {
$content_req .= implode(', ', $params['columns']) . ', ';
}
$strReq =
'SELECT E.epc_id, E.blog_id, E.epc_type, E.epc_upddt, ' .
$content_req .
'E.epc_filter, E.epc_key, E.epc_value ';
}
$this->con->execute(
'DELETE FROM '.$this->table.' '.
'WHERE epc_id = '.$id.' '.
"AND blog_id = '".$this->blog."' "
);
$strReq .=
'FROM ' . $this->table . ' E ';
$this->trigger();
}
private function getNextId()
{
return $this->con->select(
'SELECT MAX(epc_id) FROM '.$this->table.' '
)->f(0) + 1;
}
public function openCursor()
{
return $this->con->openCursor($this->table);
}
private function getCursor($cur,$epc_id=null)
{
if ($cur->epc_key == '')
{
throw new Exception(__('No record key'));
}
if ($cur->epc_value == '')
{
throw new Exception(__('No record value'));
}
if ($cur->epc_filter == '')
{
throw new Exception(__('No record filter'));
}
$epc_id = is_int($epc_id) ? $epc_id : $cur->epc_id;
}
private function trigger()
{
$this->core->blog->triggerBlog();
}
}
?>
if (!empty($params['from'])) {
$strReq .= $params['from'] . ' ';
}
$strReq .= "WHERE E.blog_id = '" . $this->blog . "' ";
if (isset($params['epc_type'])) {
if (is_array($params['epc_type']) && !empty($params['epc_type'])) {
$strReq .= 'AND E.epc_type ' . $this->con->in($params['epc_type']);
} elseif ($params['epc_type'] != '') {
$strReq .= "AND E.epc_type = '" . $this->con->escape($params['epc_type']) . "' ";
}
} else {
$strReq .= "AND E.epc_type = 'epc' ";
}
if (isset($params['epc_filter'])) {
if (is_array($params['epc_filter']) && !empty($params['epc_filter'])) {
$strReq .= 'AND E.epc_filter ' . $this->con->in($params['epc_filter']);
} elseif ($params['epc_filter'] != '') {
$strReq .= "AND E.epc_filter = '" . $this->con->escape($params['epc_filter']) . "' ";
}
}
if (!empty($params['epc_id'])) {
if (is_array($params['epc_id'])) {
array_walk($params['epc_id'], create_function('&$v,$k', 'if($v!==null){$v=(integer)$v;}'));
} else {
$params['epc_id'] = [(integer) $params['epc_id']];
}
$strReq .= 'AND E.epc_id ' . $this->con->in($params['epc_id']);
}
if (!empty($params['sql'])) {
$strReq .= $params['sql'] . ' ';
}
if (!$count_only) {
if (!empty($params['order'])) {
$strReq .= 'ORDER BY ' . $this->con->escape($params['order']) . ' ';
} else {
$strReq .= 'ORDER BY E.epc_key ASC ';
}
}
if (!$count_only && !empty($params['limit'])) {
$strReq .= $this->con->limit($params['limit']);
}
return $this->con->select($strReq);
}
public function addRecord($cur)
{
$this->con->writeLock($this->table);
try {
$cur->epc_id = $this->getNextId();
$cur->blog_id = $this->blog;
$cur->epc_upddt = date('Y-m-d H:i:s');
$this->getCursor($cur);
$cur->insert();
$this->con->unlock();
} catch (Exception $e) {
$this->con->unlock();
throw $e;
}
$this->trigger();
# --BEHAVIOR-- enhancePostContentAfterAddRecord
$this->core->callBehavior('enhancePostContentAfterAddRecord', $cur);
return $cur->epc_id;
}
public function updRecord($id, $cur)
{
$id = (integer) $id;
if (empty($id)) {
throw new Exception(__('No such record ID'));
}
$cur->epc_upddt = date('Y-m-d H:i:s');
$cur->update("WHERE epc_id = " . $id . " AND blog_id = '" . $this->blog . "' ");
$this->trigger();
# --BEHAVIOR-- enhancePostContentAfterUpdRecord
$this->core->callBehavior('enhancePostContentAfterUpdRecord', $cur, $id);
}
public function delRecord($id)
{
$id = (integer) $id;
if (empty($id)) {
throw new Exception(__('No such record ID'));
}
# --BEHAVIOR-- enhancePostContentBeforeDelRecord
$this->core->callBehavior('enhancePostContentbeforeDelRecord', $id);
$this->con->execute(
'DELETE FROM ' . $this->table . ' ' .
'WHERE epc_id = ' . $id .' ' .
"AND blog_id = '" . $this->blog . "' "
);
$this->trigger();
}
private function getNextId()
{
return $this->con->select(
'SELECT MAX(epc_id) FROM ' . $this->table . ' '
)->f(0) + 1;
}
public function openCursor()
{
return $this->con->openCursor($this->table);
}
private function getCursor($cur, $epc_id = null)
{
if ($cur->epc_key == '') {
throw new Exception(__('No record key'));
}
if ($cur->epc_value == '') {
throw new Exception(__('No record value'));
}
if ($cur->epc_filter == '') {
throw new Exception(__('No record filter'));
}
$epc_id = is_int($epc_id) ? $epc_id : $cur->epc_id;
}
private function trigger()
{
$this->core->blog->triggerBlog();
}
}

View File

@ -13,31 +13,26 @@
# This file only update old filters lists from settings to database
$f = $core->con->select("SELECT * FROM ".$core->prefix."setting WHERE setting_ns='enhancePostContent' AND blog_id IS NOT NULL ");
$f = $core->con->select("SELECT * FROM " . $core->prefix . "setting WHERE setting_ns='enhancePostContent' AND blog_id IS NOT NULL ");
while ($f->fetch())
{
if (preg_match('#enhancePostContent_(.*?)List#',$f->setting_id,$m))
{
$curlist = @unserialize($f->setting_value);
if (is_array($curlist))
{
foreach($curlist as $k => $v)
{
$cur = $core->con->openCursor($core->prefix.'epc');
$core->con->writeLock($core->prefix.'epc');
while ($f->fetch()) {
if (preg_match('#enhancePostContent_(.*?)List#', $f->setting_id, $m)) {
$curlist = @unserialize($f->setting_value);
if (is_array($curlist)) {
foreach($curlist as $k => $v) {
$cur = $core->con->openCursor($core->prefix . 'epc');
$core->con->writeLock($core->prefix . 'epc');
$cur->epc_id = $core->con->select('SELECT MAX(epc_id) FROM '.$core->prefix.'epc'.' ')->f(0) + 1;
$cur->blog_id = $f->blog_id;
$cur->epc_filter = $m[1];
$cur->epc_key = $k;
$cur->epc_value = $v;
$cur->epc_id = $core->con->select('SELECT MAX(epc_id) FROM ' . $core->prefix . 'epc' . ' ')->f(0) + 1;
$cur->blog_id = $f->blog_id;
$cur->epc_filter = $m[1];
$cur->epc_key = $k;
$cur->epc_value = $v;
$cur->insert();
$core->con->unlock();
}
}
$core->con->execute("DELETE FROM ".$core->prefix."setting WHERE setting_id='".$f->setting_id."' AND setting_ns='enhancePostContent' AND blog_id='".$f->blog_id."' ");
}
}
?>
$cur->insert();
$core->con->unlock();
}
}
$core->con->execute("DELETE FROM " . $core->prefix . "setting WHERE setting_id='" . $f->setting_id . "' AND setting_ns='enhancePostContent' AND blog_id='" . $f->blog_id . "' ");
}
}

614
index.php
View File

@ -12,8 +12,7 @@
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
return null;
}
dcPage::check('contentadmin');
@ -26,7 +25,7 @@ $s = $core->blog->settings->enhancePostContent;
$_filters = libEPC::blogFilters();
$filters_id = array();
foreach($_filters as $name => $filter) {
$filters_id[$filter['id']] = $name;
$filters_id[$filter['id']] = $name;
}
$action = isset($_POST['action']) ? $_POST['action'] : '';
@ -37,404 +36,391 @@ $records = new epcRecords($core);
# -- Action --
if (!empty($action)) {
# --BEHAVIOR-- enhancePostContentAdminSave
$core->callBehavior('enhancePostContentAdminSave',$core);
# --BEHAVIOR-- enhancePostContentAdminSave
$core->callBehavior('enhancePostContentAdminSave', $core);
}
try
{
# Update filter settings
if ($action == 'savefiltersetting'
&& isset($filters_id[$default_part])
) {
# Parse filters options
$name = $filters_id[$default_part];
$f = array(
'nocase' => !empty($_POST['filter_nocase']),
'plural' => !empty($_POST['filter_plural']),
'limit' => abs((integer) $_POST['filter_limit']),
'style' => (array) $_POST['filter_style'],
'notag' => (string) $_POST['filter_notag'],
'tplValues' => (array) $_POST['filter_tplValues'],
'pubPages' => (array) $_POST['filter_pubPages']
);
try {
# Update filter settings
if ($action == 'savefiltersetting'
&& isset($filters_id[$default_part])) {
# Parse filters options
$name = $filters_id[$default_part];
$f = [
'nocase' => !empty($_POST['filter_nocase']),
'plural' => !empty($_POST['filter_plural']),
'limit' => abs((integer) $_POST['filter_limit']),
'style' => (array) $_POST['filter_style'],
'notag' => (string) $_POST['filter_notag'],
'tplValues' => (array) $_POST['filter_tplValues'],
'pubPages' => (array) $_POST['filter_pubPages']
];
$s->put('enhancePostContent_'.$name, serialize($f));
$s->put('enhancePostContent_' . $name, serialize($f));
$core->blog->triggerBlog();
$core->blog->triggerBlog();
dcPage::addSuccessNotice(
__('Filter successfully updated.')
);
http::redirect(
$p_url.'part='.$default_part.'#setting'
);
}
dcPage::addSuccessNotice(
__('Filter successfully updated.')
);
http::redirect(
$p_url . 'part=' . $default_part . '#setting'
);
}
# Add new filter record
if ($action == 'savenewrecord'
&& isset($filters_id[$default_part])
&& !empty($_POST['new_key'])
&& !empty($_POST['new_value'])
) {
$cur = $records->openCursor();
$cur->epc_filter = $filters_id[$default_part];
$cur->epc_key = html::escapeHTML($_POST['new_key']);
$cur->epc_value = html::escapeHTML($_POST['new_value']);
$records->addRecord($cur);
# Add new filter record
if ($action == 'savenewrecord'
&& isset($filters_id[$default_part])
&& !empty($_POST['new_key'])
&& !empty($_POST['new_value'])) {
$cur = $records->openCursor();
$cur->epc_filter = $filters_id[$default_part];
$cur->epc_key = html::escapeHTML($_POST['new_key']);
$cur->epc_value = html::escapeHTML($_POST['new_value']);
$records->addRecord($cur);
$core->blog->triggerBlog();
$core->blog->triggerBlog();
dcPage::addSuccessNotice(
__('Filter successfully updated.')
);
http::redirect(
$p_url.'&part='.$default_part.'#record'
);
}
dcPage::addSuccessNotice(
__('Filter successfully updated.')
);
http::redirect(
$p_url . '&part=' . $default_part . '#record'
);
}
# Update filter records
if ($action == 'saveupdaterecords'
&& isset($filters_id[$default_part])
&& $_filters[$filters_id[$default_part]]['has_list']
) {
foreach($_POST['epc_id'] as $k => $id) {
# Update filter records
if ($action == 'saveupdaterecords'
&& isset($filters_id[$default_part])
&& $_filters[$filters_id[$default_part]]['has_list']) {
foreach($_POST['epc_id'] as $k => $id) {
$k = abs((integer) $k);
$id = abs((integer) $id);
$k = abs((integer) $k);
$id = abs((integer) $id);
if (empty($_POST['epc_key'][$k])
|| empty($_POST['epc_value'][$k])
) {
$records->delRecord($id);
}
elseif ($_POST['epc_key'][$k] != $_POST['epc_old_key'][$k]
|| $_POST['epc_value'][$k] != $_POST['epc_old_value'][$k]
) {
$cur = $records->openCursor();
$cur->epc_filter = $filters_id[$default_part];
$cur->epc_key = html::escapeHTML($_POST['epc_key'][$k]);
$cur->epc_value = html::escapeHTML($_POST['epc_value'][$k]);
$records->updRecord($id,$cur);
}
}
if (empty($_POST['epc_key'][$k])
|| empty($_POST['epc_value'][$k])) {
$records->delRecord($id);
} elseif ($_POST['epc_key'][$k] != $_POST['epc_old_key'][$k]
|| $_POST['epc_value'][$k] != $_POST['epc_old_value'][$k]) {
$cur = $records->openCursor();
$cur->epc_filter = $filters_id[$default_part];
$cur->epc_key = html::escapeHTML($_POST['epc_key'][$k]);
$cur->epc_value = html::escapeHTML($_POST['epc_value'][$k]);
$records->updRecord($id, $cur);
}
}
$core->blog->triggerBlog();
$core->blog->triggerBlog();
$redir = !empty($_REQUEST['redir']) ?
$_REQUEST['redir'] :
$p_url.'&part='.$default_part.'#record';
$redir = !empty($_REQUEST['redir']) ?
$_REQUEST['redir'] :
$p_url . '&part=' . $default_part . '#record';
dcPage::addSuccessNotice(
__('Filter successfully updated.')
);
http::redirect(
$redir
);
}
}
catch(Exception $e) {
$core->error->add($e->getMessage());
dcPage::addSuccessNotice(
__('Filter successfully updated.')
);
http::redirect(
$redir
);
}
} catch(Exception $e) {
$core->error->add($e->getMessage());
}
# -- Prepare page --
$breadcrumb = array(
html::escapeHTML($core->blog->name) => '',
__('Enhance post content') => $p_url
);
$top_menu = array();
$breadcrumb = [
html::escapeHTML($core->blog->name) => '',
__('Enhance post content') => $p_url
];
$top_menu = [];
foreach($filters_id as $id => $name) {
$active = '';
if ($default_part == $id) {
$breadcrumb[__($filters_id[$default_part])] = '';
$active = ' class="active"';
}
$active = '';
if ($default_part == $id) {
$breadcrumb[__($filters_id[$default_part])] = '';
$active = ' class="active"';
}
$top_menu[] =
'<a'.$active.' href="'.$p_url.'&amp;part='.$id.'">'.__($name).'</a>';
$top_menu[] =
'<a' . $active . ' href="' . $p_url . '&amp;part=' . $id . '">' . __($name) . '</a>';
}
# -- Display page --
# Headers
echo '
<html><head><title>'.__('Enhance post content').'</title>'.
dcPage::jsLoad('js/_posts_list.js').
dcPage::jsToolbar().
dcPage::jsPageTabs().
<html><head><title>' . __('Enhance post content') . '</title>' .
dcPage::jsLoad('js/_posts_list.js') .
dcPage::jsToolbar() .
dcPage::jsPageTabs() .
# --BEHAVIOR-- enhancePostContentAdminHeader
$core->callBehavior('enhancePostContentAdminHeader',$core).'
$core->callBehavior('enhancePostContentAdminHeader', $core) . '
</head><body>'.
</head><body>' .
# Title
dcPage::breadcrumb($breadcrumb).
dcPage::notices().
dcPage::breadcrumb($breadcrumb) .
dcPage::notices() .
# Filters list
'<ul class="pseudo-tabs">'.
'<li>'.implode('</li><li>', $top_menu).'</li>'.
'<ul class="pseudo-tabs">' .
'<li>' . implode('</li><li>', $top_menu) . '</li>' .
'</ul>';
# Filter content
if (isset($filters_id[$default_part])) {
$name = $filters_id[$default_part];
$filter = $_filters[$name];
$name = $filters_id[$default_part];
$filter = $_filters[$name];
# Filter title and description
echo '
<h3>'.__($filters_id[$default_part]).'</h3>
<p>'.$filter['help'].'</p>';
# Filter title and description
echo '
<h3>' . __($filters_id[$default_part]) . '</h3>
<p>' . $filter['help'] . '</p>';
# Filter settings
echo '
<div class="multi-part" id="setting" title="'.__('Settings').'">
<form method="post" action="'.$p_url.'&amp;part='.$default_part.'&amp;tab=setting"><div>';
# Filter settings
echo '
<div class="multi-part" id="setting" title="' . __('Settings') . '">
<form method="post" action="' . $p_url . '&amp;part=' . $default_part . '&amp;tab=setting"><div>';
echo
'<div class="two-boxes odd">
<h4>'.__('Pages to be filtered').'</h4>';
echo
'<div class="two-boxes odd">
<h4>' . __('Pages to be filtered') . '</h4>';
foreach(libEPC::blogAllowedPubPages() as $k => $v) {
echo '
<p><label for="filter_pubPages'.$v.'">'.
form::checkbox(
array('filter_pubPages[]', 'filter_pubPages'.$v),
$v,
in_array($v,$filter['pubPages'])
).
__($k).'</label></p>';
}
foreach(libEPC::blogAllowedPubPages() as $k => $v) {
echo '
<p><label for="filter_pubPages' . $v . '">' .
form::checkbox(
['filter_pubPages[]', 'filter_pubPages' . $v],
$v,
in_array($v, $filter['pubPages'])
) .
__($k) . '</label></p>';
}
echo
'</div>';
echo
'</div>';
echo
'<div class="two-boxes even">
<h4>'.__('Filtering').'</h4>
echo
'<div class="two-boxes even">
<h4>' . __('Filtering') . '</h4>
<p><label for="filter_nocase">'.
form::checkbox('filter_nocase', '1', $filter['nocase']).
__('Case insensitive').'</label></p>
<p><label for="filter_nocase">' .
form::checkbox('filter_nocase', '1', $filter['nocase']) .
__('Case insensitive') . '</label></p>
<p><label for="filter_plural">'.
form::checkbox('filter_plural', '1', $filter['plural']).
__('Also use the plural').'</label></p>
<p><label for="filter_plural">' .
form::checkbox('filter_plural', '1', $filter['plural']) .
__('Also use the plural') . '</label></p>
<p><label for="filter_limit">'.
__('Limit the number of replacement to:').'</label>'.
form::field('filter_limit', 4, 10, html::escapeHTML($filter['limit'])).'
</p>
<p class="form-note">'.__('Leave it blank or set it to 0 for no limit').'</p>
<p><label for="filter_limit">' .
__('Limit the number of replacement to:') . '</label>' .
form::field('filter_limit', 4, 10, html::escapeHTML($filter['limit'])) . '
</p>
<p class="form-note">' . __('Leave it blank or set it to 0 for no limit') . '</p>
</div>';
</div>';
echo
'<div class="two-boxes odd">
<h4>'.__('Contents to be filtered').'</h4>';
echo
'<div class="two-boxes odd">
<h4>' . __('Contents to be filtered') . '</h4>';
foreach(libEPC::blogAllowedTplValues() as $k => $v) {
echo '
<p><label for="filter_tplValues'.$v.'">'.
form::checkbox(
array('filter_tplValues[]', 'filter_tplValues'.$v),
$v,
in_array($v,$filter['tplValues'])
).
__($k).'</label></p>';
}
foreach(libEPC::blogAllowedTplValues() as $k => $v) {
echo '
<p><label for="filter_tplValues' . $v . '">' .
form::checkbox(
['filter_tplValues[]', 'filter_tplValues' . $v],
$v,
in_array($v, $filter['tplValues'])
) .
__($k) . '</label></p>';
}
echo
'</div>';
echo
'</div>';
echo
'<div class="two-boxes even">
<h4>'.__('Style').'</h4>';
echo
'<div class="two-boxes even">
<h4>' . __('Style') . '</h4>';
foreach($filter['class'] as $k => $v) {
echo '
<p><label for="filter_style'.$k.'">'.
sprintf(__('Class "%s":'),$v).'</label>'.
form::field(
array('filter_style[]', 'filter_style'.$k),
60,
255,
html::escapeHTML($filter['style'][$k])
).
'</p>';
}
foreach($filter['class'] as $k => $v) {
echo '
<p><label for="filter_style' . $k . '">' .
sprintf(__('Class "%s":'), $v) . '</label>' .
form::field(
['filter_style[]', 'filter_style'.$k],
60,
255,
html::escapeHTML($filter['style'][$k])
) .
'</p>';
}
echo '
<p class="form-note">'.sprintf(__('The inserted HTML tag looks like: %s'), html::escapeHTML(str_replace('%s', '...', $filter['replace']))).'</p>
echo '
<p class="form-note">' . sprintf(__('The inserted HTML tag looks like: %s'), html::escapeHTML(str_replace('%s', '...', $filter['replace']))) . '</p>
<p><label for="filter_notag">'.__('Ignore HTML tags:').'</label>'.
form::field('filter_notag', 60, 255, html::escapeHTML($filter['notag'])).'
</p>
<p class="form-note">'.__('This is the list of HTML tags where content will be ignored.').' '.
(empty($filter['htmltag']) ? '' : sprintf(__('Tag "%s" always be ignored.'), $filter['htmltag'])).'</p>
<p><label for="filter_notag">' . __('Ignore HTML tags:') . '</label>' .
form::field('filter_notag', 60, 255, html::escapeHTML($filter['notag'])) . '
</p>
<p class="form-note">' . __('This is the list of HTML tags where content will be ignored.') . ' ' .
(empty($filter['htmltag']) ? '' : sprintf(__('Tag "%s" always be ignored.'), $filter['htmltag'])) . '</p>
</div>';
</div>';
echo '</div>
<div class="clear">
<p>'.
$core->formNonce().
form::hidden(array('action'), 'savefiltersetting').'
<input type="submit" name="save" value="'.__('Save').'" />
</p>
</div>
echo '</div>
<div class="clear">
<p>' .
$core->formNonce() .
form::hidden(['action'], 'savefiltersetting') . '
<input type="submit" name="save" value="' . __('Save') . '" />
</p>
</div>
</form>
</div>';
</form>
</div>';
# Filter records list
if ($filter['has_list']) {
# Filter records list
if ($filter['has_list']) {
$sortby_combo = array(
'epc_upddt',
'epc_key',
'epc_value',
'epc_id'
);
$sortby_combo = [
'epc_upddt',
'epc_key',
'epc_value',
'epc_id'
];
$order_combo = array(
'asc',
'desc'
);
$sortby = !empty($_GET['sortby']) ? $_GET['sortby'] : (string) $s->enhancePostContent_list_sortby;
$order = !empty($_GET['order']) ? $_GET['order'] : (string) $s->enhancePostContent_list_order;
$page = !empty($_GET['page']) ? (integer) $_GET['page'] : 1;
$nb = !empty($_GET['nb']) && (integer) $_GET['nb'] > 0 ? (integer) $_GET['nb'] : (integer) $s->enhancePostContent_list_nb;
$order_combo = [
'asc',
'desc'
];
$sortby = !empty($_GET['sortby']) ? $_GET['sortby'] : (string) $s->enhancePostContent_list_sortby;
$order = !empty($_GET['order']) ? $_GET['order'] : (string) $s->enhancePostContent_list_order;
$page = !empty($_GET['page']) ? (integer) $_GET['page'] : 1;
$nb = !empty($_GET['nb']) && (integer) $_GET['nb'] > 0 ? (integer) $_GET['nb'] : (integer) $s->enhancePostContent_list_nb;
$params = array();
$params['epc_filter'] = $name;
$params['limit'] = array((($page-1)*$nb), $nb);
$params = [];
$params['epc_filter'] = $name;
$params['limit'] = [(($page - 1) * $nb), $nb];
if ($sortby !== '' && in_array($sortby, $sortby_combo)) {
if ($order !== '' && in_array($order, $order_combo)) {
$params['order'] = $sortby.' '.$order;
}
}
if ($sortby !== '' && in_array($sortby, $sortby_combo)) {
if ($order !== '' && in_array($order, $order_combo)) {
$params['order'] = $sortby . ' ' . $order;
}
}
try {
$list = $records->getRecords($params);
$counter = $records->getRecords($params, true);
}
catch (Exception $e) {
$core->error->add($e->getMessage());
}
try {
$list = $records->getRecords($params);
$counter = $records->getRecords($params, true);
} catch (Exception $e) {
$core->error->add($e->getMessage());
}
$pager_url = $p_url.
'&amp;nb='.$nb.
'&amp;sortby=%s'.
'&amp;order='.($order == 'desc' ? 'desc' : 'asc').
'&amp;page=%s'.
'&amp;part='.$default_part.
'#record';
$pager_url = $p_url .
'&amp;nb=' . $nb .
'&amp;sortby=%s' .
'&amp;order=' . ($order == 'desc' ? 'desc' : 'asc') .
'&amp;page=%s' .
'&amp;part=' . $default_part .
'#record';
$pager = new pager($page, $counter->f(0), $nb, 10);
$pager->html_prev = __('&#171;prev.');
$pager->html_next = __('next&#187;');
$pager->base_url = sprintf($pager_url, $sortby,'%s');
$pager->var_page = 'page';
$pager = new pager($page, $counter->f(0), $nb, 10);
$pager->html_prev = __('&#171;prev.');
$pager->html_next = __('next&#187;');
$pager->base_url = sprintf($pager_url, $sortby, '%s');
$pager->var_page = 'page';
echo '
<div class="multi-part" id="record" title="'.__('Records').'">';
echo '
<div class="multi-part" id="record" title="' . __('Records') . '">';
if ($core->error->flag() || $list->isEmpty()) {
echo '<p>'.__('No record').'</p>';
}
else {
echo '
<form action="'.$pager_url.'" method="post">
<p>'.__('Page(s)').' : '.$pager->getLinks().'</p>
<table>
<thead><tr>
<th><a href="'.sprintf($pager_url, 'epc_key', $page).'">'
.__('Key').'</a></th>
<th><a href="'.sprintf($pager_url, 'epc_value', $page).'">'.
__('Value').'</a></th>
<th><a href="'.sprintf($pager_url, 'epc_upddt', $page).'">'.
__('Date').'</a></th>
</tr></thead>
<tbody>';
if ($core->error->flag() || $list->isEmpty()) {
echo '<p>' . __('No record') . '</p>';
} else {
echo '
<form action="' . $pager_url . '" method="post">
<p>' . __('Page(s)') . ' : ' . $pager->getLinks() . '</p>
<table>
<thead><tr>
<th><a href="' . sprintf($pager_url, 'epc_key', $page) . '">' .
__('Key') . '</a></th>
<th><a href="' . sprintf($pager_url, 'epc_value', $page) . '">' .
__('Value') . '</a></th>
<th><a href="' . sprintf($pager_url, 'epc_upddt', $page) . '">' .
__('Date') . '</a></th>
</tr></thead>
<tbody>';
while($list->fetch()) {
echo '
<tr class="line">
<td class="nowrap">'.
form::hidden(array('epc_id[]'), $list->epc_id).
form::hidden(array('epc_old_key[]'), html::escapeHTML($list->epc_key)).
form::hidden(array('epc_old_value[]'), html::escapeHTML($list->epc_value)).
form::field(array('epc_key[]'), 30, 225, html::escapeHTML($list->epc_key), '').'</td>
<td class="maximal">'.
form::field(array('epc_value[]'), 90, 225, html::escapeHTML($list->epc_value), 'maximal').'</td>
<td class="nowrap">'.
dt::dt2str(__('%Y-%m-%d %H:%M'), $list->epc_upddt,$core->auth->getInfo('user_tz')).'</td>
</tr>';
}
while($list->fetch()) {
echo '
<tr class="line">
<td class="nowrap">' .
form::hidden(['epc_id[]'], $list->epc_id) .
form::hidden(['epc_old_key[]'], html::escapeHTML($list->epc_key)) .
form::hidden(['epc_old_value[]'], html::escapeHTML($list->epc_value)) .
form::field(['epc_key[]'], 30, 225, html::escapeHTML($list->epc_key), '') . '</td>
<td class="maximal">' .
form::field(['epc_value[]'], 90, 225, html::escapeHTML($list->epc_value), 'maximal') . '</td>
<td class="nowrap">' .
dt::dt2str(__('%Y-%m-%d %H:%M'), $list->epc_upddt,$core->auth->getInfo('user_tz')) . '</td>
</tr>';
}
echo '
</tbody>
</table>
<p class="form-note">'.__('In order to remove a record, leave empty its key or value.').'</p>
<p>'.__('Page(s)').' : '.$pager->getLinks().'</p>
echo '
</tbody>
</table>
<p class="form-note">' . __('In order to remove a record, leave empty its key or value.') . '</p>
<p>' . __('Page(s)') . ' : ' . $pager->getLinks() . '</p>
<div class="clear">
<p>'.
$core->formNonce().
form::hidden(array('redir'), sprintf($pager_url, $sortby, $page)).
form::hidden(array('action'), 'saveupdaterecords').'
<input type="submit" name="save" value="'.__('Save').'" />
</p>
</div>
<div class="clear">
<p>' .
$core->formNonce() .
form::hidden(['redir'], sprintf($pager_url, $sortby, $page)) .
form::hidden(['action'], 'saveupdaterecords') . '
<input type="submit" name="save" value="' . __('Save') . '" />
</p>
</div>
</form>';
}
</form>';
}
echo '</div>';
echo '</div>';
# New record
echo '
<div class="multi-part" id="newrecord" title="'.__('New record').'">
<form action="'.$p_url.'&amp;part='.$default_part.'&amp;tab=setting" method="post">'.
# New record
echo '
<div class="multi-part" id="newrecord" title="' . __('New record') . '">
<form action="' . $p_url . '&amp;part=' . $default_part . '&amp;tab=setting" method="post">' .
'<p><label for="new_key">'.__('Key:').'</label>'.
form::field('new_key', 60, 255).
'</p>'.
'<p><label for="new_key">' . __('Key:') . '</label>' .
form::field('new_key', 60, 255) .
'</p>' .
'<p><label for="new_value">'.__('Value:').'</label>'.
form::field('new_value', 60, 255).
'</p>
'<p><label for="new_value">' . __('Value:') . '</label>' .
form::field('new_value', 60, 255) .
'</p>
<p class="clear">'.
form::hidden(array('action'), 'savenewrecord').
$core->formNonce().'
<input type="submit" name="save" value="'.__('Save').'" />
</p>
</form>
</div>';
}
<p class="clear">' .
form::hidden(['action'], 'savenewrecord') .
$core->formNonce() . '
<input type="submit" name="save" value="' . __('Save') . '" />
</p>
</form>
</div>';
}
}
# --BEHAVIOR-- enhancePostContentAdminPage
$core->callBehavior('enhancePostContentAdminPage',$core);
$core->callBehavior('enhancePostContentAdminPage', $core);
dcPage::helpBlock('enhancePostContent');
# Footers
echo
'<hr class="clear"/><p class="right modules">
<a class="module-config" '.
'href="plugins.php?module=enhancePostContent&amp;conf=1&amp;redir='.
urlencode('plugin.php?p=enhancePostContent').'">'.__('Configuration').'</a> -
enhancePostContent - '.$core->plugins->moduleInfo('enhancePostContent', 'version').'&nbsp;
<img alt="'.__('enhancePostContent').'" src="index.php?pf=enhancePostContent/icon.png" />
enhancePostContent - ' . $core->plugins->moduleInfo('enhancePostContent', 'version') . '&nbsp;
<img alt="' . __('enhancePostContent') . '" src="index.php?pf=enhancePostContent/icon.png" />
</p>
</body></html>';

View File

@ -11,7 +11,8 @@
#
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) { return; }
if (!defined('DC_RC_PATH')) {
return;
}
$__resources['help']['enhancePostContent'] = dirname(__FILE__).'/help/help.html';
?>
$__resources['help']['enhancePostContent'] = dirname(__FILE__) . '/help/help.html';

View File

@ -11,7 +11,8 @@
#
# -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) { return; }
if (!defined('DC_RC_PATH')) {
return;
}
$__resources['help']['enhancePostContent'] = dirname(__FILE__).'/help/help.html';
?>
$__resources['help']['enhancePostContent'] = dirname(__FILE__) . '/help/help.html';