fix PRS12 CS
This commit is contained in:
parent
aa102cb260
commit
a43e4015cd
11
README.md
11
README.md
@ -1,10 +1,11 @@
|
||||
# README
|
||||
|
||||
[![Release version](https://img.shields.io/github/v/release/JcDenis/cinecturlink2)](https://github.com/JcDenis/cinecturlink2/releases)
|
||||
[![Release date](https://img.shields.io/github/release-date/JcDenis/cinecturlink2)](https://github.com/JcDenis/cinecturlink2/releases)
|
||||
[![Issue tracking](https://img.shields.io/github/issues/JcDenis/cinecturlink2)](https://github.com/JcDenis/cinecturlink2/issues)
|
||||
[![Dotclear version](https://img.shields.io/badge/dotclear-v2.19-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![License](https://img.shields.io/badge/license-GPL%20v2-blue.svg)](https://github.com/JcDenis/cinecturlink2/blob/master/LICENSE)
|
||||
[![Release](https://img.shields.io/github/v/release/JcDenis/cinecturlink2)](https://github.com/JcDenis/cinecturlink2/releases)
|
||||
[![Date](https://img.shields.io/github/release-date/JcDenis/cinecturlink2)](https://github.com/JcDenis/cinecturlink2/releases)
|
||||
[![Issues](https://img.shields.io/github/issues/JcDenis/cinecturlink2)](https://github.com/JcDenis/cinecturlink2/issues)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.19-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/cinecturlink2)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/cinecturlink2)](https://github.com/JcDenis/cinecturlink2/blob/master/LICENSE)
|
||||
|
||||
## WHAT IS CINECTURLINK2 ?
|
||||
|
||||
|
11
_admin.php
11
_admin.php
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
return null;
|
||||
}
|
||||
@ -86,12 +85,12 @@ class cinecturlink2AdminBehaviors
|
||||
public static function adminDashboardFavorites($core, $favs)
|
||||
{
|
||||
$favs->register('cinecturlink2', [
|
||||
'title' => __('My cinecturlink'),
|
||||
'url' => $core->adminurl->get('admin.plugin.cinecturlink2').'#links',
|
||||
'small-icon' => dcPage::getPF('cinecturlink2/icon.png'),
|
||||
'large-icon' => dcPage::getPF('cinecturlink2/icon-big.png'),
|
||||
'title' => __('My cinecturlink'),
|
||||
'url' => $core->adminurl->get('admin.plugin.cinecturlink2') . '#links',
|
||||
'small-icon' => dcPage::getPF('cinecturlink2/icon.png'),
|
||||
'large-icon' => dcPage::getPF('cinecturlink2/icon-big.png'),
|
||||
'permissions' => $core->auth->check('contentadmin', $core->blog->id),
|
||||
'active_cb' => ['cinecturlink2AdminBehaviors', 'adminDashboardFavoritesActive']
|
||||
'active_cb' => ['cinecturlink2AdminBehaviors', 'adminDashboardFavoritesActive']
|
||||
]);
|
||||
}
|
||||
|
||||
|
42
_config.php
42
_config.php
@ -10,24 +10,23 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_CONTEXT_MODULE')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$redir = empty($_REQUEST['redir']) ?
|
||||
$list->getURL().'#plugins' : $_REQUEST['redir'];
|
||||
$list->getURL() . '#plugins' : $_REQUEST['redir'];
|
||||
|
||||
$core->blog->settings->addNamespace('cinecturlink2');
|
||||
$s = $core->blog->settings->cinecturlink2;
|
||||
$cinecturlink2_active = (boolean) $s->cinecturlink2_active;
|
||||
$cinecturlink2_widthmax = abs((integer) $s->cinecturlink2_widthmax);
|
||||
$cinecturlink2_folder = (string) $s->cinecturlink2_folder;
|
||||
$cinecturlink2_triggeronrandom = (boolean) $s->cinecturlink2_triggeronrandom;
|
||||
$cinecturlink2_public_active = (boolean) $s->cinecturlink2_public_active;
|
||||
$cinecturlink2_public_title = (string) $s->cinecturlink2_public_title;
|
||||
$s = $core->blog->settings->cinecturlink2;
|
||||
$cinecturlink2_active = (bool) $s->cinecturlink2_active;
|
||||
$cinecturlink2_widthmax = abs((int) $s->cinecturlink2_widthmax);
|
||||
$cinecturlink2_folder = (string) $s->cinecturlink2_folder;
|
||||
$cinecturlink2_triggeronrandom = (bool) $s->cinecturlink2_triggeronrandom;
|
||||
$cinecturlink2_public_active = (bool) $s->cinecturlink2_public_active;
|
||||
$cinecturlink2_public_title = (string) $s->cinecturlink2_public_title;
|
||||
$cinecturlink2_public_description = (string) $s->cinecturlink2_public_description;
|
||||
$cinecturlink2_public_nbrpp = (integer) $s->cinecturlink2_public_nbrpp;
|
||||
$cinecturlink2_public_nbrpp = (int) $s->cinecturlink2_public_nbrpp;
|
||||
if ($cinecturlink2_public_nbrpp < 1) {
|
||||
$cinecturlink2_public_nbrpp = 10;
|
||||
}
|
||||
@ -36,18 +35,17 @@ $combo_dirs = cinecturlink2::getPublicDirs($core);
|
||||
|
||||
if (!empty($_POST['save'])) {
|
||||
try {
|
||||
|
||||
$cinecturlink2_active = !empty($_POST['cinecturlink2_active']);
|
||||
$cinecturlink2_widthmax = abs((integer) $_POST['cinecturlink2_widthmax']);
|
||||
$cinecturlink2_newdir = (string) files::tidyFileName($_POST['cinecturlink2_newdir']);
|
||||
$cinecturlink2_folder = empty($cinecturlink2_newdir) ?
|
||||
$cinecturlink2_active = !empty($_POST['cinecturlink2_active']);
|
||||
$cinecturlink2_widthmax = abs((int) $_POST['cinecturlink2_widthmax']);
|
||||
$cinecturlink2_newdir = (string) files::tidyFileName($_POST['cinecturlink2_newdir']);
|
||||
$cinecturlink2_folder = empty($cinecturlink2_newdir) ?
|
||||
(string) files::tidyFileName($_POST['cinecturlink2_folder']) :
|
||||
$cinecturlink2_newdir;
|
||||
$cinecturlink2_triggeronrandom = !empty($_POST['cinecturlink2_triggeronrandom']);
|
||||
$cinecturlink2_public_active = !empty($_POST['cinecturlink2_public_active']);
|
||||
$cinecturlink2_public_title = (string) $_POST['cinecturlink2_public_title'];
|
||||
$cinecturlink2_triggeronrandom = !empty($_POST['cinecturlink2_triggeronrandom']);
|
||||
$cinecturlink2_public_active = !empty($_POST['cinecturlink2_public_active']);
|
||||
$cinecturlink2_public_title = (string) $_POST['cinecturlink2_public_title'];
|
||||
$cinecturlink2_public_description = (string) $_POST['cinecturlink2_public_description'];
|
||||
$cinecturlink2_public_nbrpp = (integer) $_POST['cinecturlink2_public_nbrpp'];
|
||||
$cinecturlink2_public_nbrpp = (int) $_POST['cinecturlink2_public_nbrpp'];
|
||||
if ($cinecturlink2_public_nbrpp < 1) {
|
||||
$cinecturlink2_public_nbrpp = 10;
|
||||
}
|
||||
@ -88,10 +86,10 @@ echo '
|
||||
form::checkbox('cinecturlink2_active', 1, $cinecturlink2_active) .
|
||||
__('Enable plugin') . '</label></p>
|
||||
|
||||
<p><label for="cinecturlink2_folder">'.__('Public folder of images (under public folder of blog):') . '</label>' .
|
||||
<p><label for="cinecturlink2_folder">' . __('Public folder of images (under public folder of blog):') . '</label>' .
|
||||
form::combo('cinecturlink2_folder', $combo_dirs, $cinecturlink2_folder) . '</p>
|
||||
|
||||
<p><label for="cinecturlink2_newdir">'.__('Or create a new public folder of images:') . '</label>' .
|
||||
<p><label for="cinecturlink2_newdir">' . __('Or create a new public folder of images:') . '</label>' .
|
||||
form::field('cinecturlink2_newdir', 60, 64, '', 'maximal') . '</p>
|
||||
|
||||
<p><label for="cinecturlink2_widthmax">' . __('Maximum width of images (in pixel):') . '</label>' .
|
||||
@ -115,7 +113,7 @@ __('Update cache when use "Random" or "Number of view" order on widget (Need rel
|
||||
<p><label class="classic" for="cinecturlink2_public_active">' .
|
||||
form::checkbox('cinecturlink2_public_active', 1, $cinecturlink2_public_active) .
|
||||
__('Enable public page') . '</label></p>
|
||||
<p class="form-note">' . sprintf(__('Public page has url: %s'), '<a href="' . $core->blog->url.$core->url->getBase('cinecturlink2') . '" title="public page">' . $core->blog->url . $core->url->getBase('cinecturlink2') . '</a>') . '</p>
|
||||
<p class="form-note">' . sprintf(__('Public page has url: %s'), '<a href="' . $core->blog->url . $core->url->getBase('cinecturlink2') . '" title="public page">' . $core->blog->url . $core->url->getBase('cinecturlink2') . '</a>') . '</p>
|
||||
|
||||
<p><label for="cinecturlink2_public_title">' . __('Title of the public page:') . '</label>' .
|
||||
form::field('cinecturlink2_public_title', 60, 255, $cinecturlink2_public_title, 'maximal') . '</p>
|
||||
|
11
_define.php
11
_define.php
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
/*
|
||||
* Taken from cinecturlink for Dotclear 1
|
||||
* By Tigroux and Brol
|
||||
@ -27,11 +26,11 @@ $this->registerModule(
|
||||
'Jean-Christian Denis and Contributors',
|
||||
'0.9.1',
|
||||
[
|
||||
'requires' => [['core', '2.19']],
|
||||
'requires' => [['core', '2.19']],
|
||||
'permissions' => 'contentadmin',
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/cinecturlink2',
|
||||
'details' => 'https://plugins.dotaddict.org/dc2/details/cinecturlink2',
|
||||
'repository' => 'https://raw.githubusercontent.com/JcDenis/cinecturlink2/master/dcstore.xml'
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/cinecturlink2',
|
||||
'details' => 'https://plugins.dotaddict.org/dc2/details/cinecturlink2',
|
||||
'repository' => 'https://raw.githubusercontent.com/JcDenis/cinecturlink2/master/dcstore.xml'
|
||||
]
|
||||
);
|
47
_install.php
47
_install.php
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
return null;
|
||||
}
|
||||
@ -25,20 +24,20 @@ if (version_compare($old_version, $new_version, '>=')) {
|
||||
try {
|
||||
$s = new dbStruct($core->con, $core->prefix);
|
||||
$s->cinecturlink2
|
||||
->link_id ('bigint', 0, false)
|
||||
->blog_id ('varchar', 32, false)
|
||||
->cat_id ('bigint', 0, true)
|
||||
->user_id ('varchar', 32, true)
|
||||
->link_type ('varchar', 32, false, "'cinecturlink'")
|
||||
->link_title ('varchar', 255, false)
|
||||
->link_desc ('varchar', 255, false)
|
||||
->link_author ('varchar', 255, false)
|
||||
->link_lang ('varchar', 5, false, "'en'")
|
||||
->link_url ('varchar', 255, false)
|
||||
->link_img ('varchar', 255, false)
|
||||
->link_creadt ('timestamp', 0, false, 'now()')
|
||||
->link_upddt ('timestamp', 0, false, 'now()')
|
||||
->link_pos ('smallint', 0, false, "'0'")
|
||||
->link_id('bigint', 0, false)
|
||||
->blog_id('varchar', 32, false)
|
||||
->cat_id('bigint', 0, true)
|
||||
->user_id('varchar', 32, true)
|
||||
->link_type('varchar', 32, false, "'cinecturlink'")
|
||||
->link_title('varchar', 255, false)
|
||||
->link_desc('varchar', 255, false)
|
||||
->link_author('varchar', 255, false)
|
||||
->link_lang('varchar', 5, false, "'en'")
|
||||
->link_url('varchar', 255, false)
|
||||
->link_img('varchar', 255, false)
|
||||
->link_creadt('timestamp', 0, false, 'now()')
|
||||
->link_upddt('timestamp', 0, false, 'now()')
|
||||
->link_pos('smallint', 0, false, "'0'")
|
||||
->link_note('smallint', 0, false, "'10'")
|
||||
->link_count('bigint', 0, false, "'0'")
|
||||
|
||||
@ -51,19 +50,19 @@ try {
|
||||
->index('idx_cinecturlink2_type', 'btree', 'link_type');
|
||||
|
||||
$s->cinecturlink2_cat
|
||||
->cat_id ('bigint', 0, false)
|
||||
->blog_id ('varchar', 32, false)
|
||||
->cat_title ('varchar', 255, false)
|
||||
->cat_desc ('varchar', 255, false)
|
||||
->cat_creadt ('timestamp', 0, false, 'now()')
|
||||
->cat_upddt ('timestamp', 0, false, 'now()')
|
||||
->cat_pos ('smallint', 0, false, "'0'")
|
||||
->cat_id('bigint', 0, false)
|
||||
->blog_id('varchar', 32, false)
|
||||
->cat_title('varchar', 255, false)
|
||||
->cat_desc('varchar', 255, false)
|
||||
->cat_creadt('timestamp', 0, false, 'now()')
|
||||
->cat_upddt('timestamp', 0, false, 'now()')
|
||||
->cat_pos('smallint', 0, false, "'0'")
|
||||
|
||||
->primary('pk_cinecturlink2_cat', 'cat_id')
|
||||
->index('idx_cinecturlink2_cat_blog_id', 'btree', 'blog_id')
|
||||
->unique('uk_cinecturlink2_cat_title', 'cat_title', 'blog_id');
|
||||
|
||||
$si = new dbStruct($core->con,$core->prefix);
|
||||
$si = new dbStruct($core->con, $core->prefix);
|
||||
$changes = $si->synchronize($s);
|
||||
|
||||
$core->blog->settings->addNamespace('cinecturlink2');
|
||||
@ -74,7 +73,7 @@ try {
|
||||
$s->put('cinecturlink2_triggeronrandom', false, 'boolean', 'Open link in new window', false, true);
|
||||
$s->put('cinecturlink2_public_active', false, 'boolean', 'Enable cinecturlink2', false, true);
|
||||
$s->put('cinecturlink2_public_title', '', 'string', 'Title of public page', false, true);
|
||||
$s->put('cinecturlink2_public_description', '', 'string','Description of public page', false, true);
|
||||
$s->put('cinecturlink2_public_description', '', 'string', 'Description of public page', false, true);
|
||||
$s->put('cinecturlink2_public_nbrpp', 20, 'integer', 'Number of entries per page on public page', false, true);
|
||||
$s->put('cinecturlink2_public_caturl', 'c2cat', 'string', 'Part of URL for a category list', false, true);
|
||||
|
||||
|
@ -10,17 +10,16 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$d = dirname(__FILE__) . '/inc/';
|
||||
|
||||
$__autoload['cinecturlink2'] = $d . 'class.cinecturlink2.php';
|
||||
$__autoload['cinecturlink2Context'] = $d . 'lib.cinecturlink2.context.php';
|
||||
$__autoload['adminlistCinecturlink2'] = $d . 'lib.cinecturlink2.list.php';
|
||||
$__autoload['sitemapsCinecturlink2'] = $d . 'lib.sitemaps.cinecturlink2.php';
|
||||
$__autoload['cinecturlink2'] = $d . 'class.cinecturlink2.php';
|
||||
$__autoload['cinecturlink2Context'] = $d . 'lib.cinecturlink2.context.php';
|
||||
$__autoload['adminlistCinecturlink2'] = $d . 'lib.cinecturlink2.list.php';
|
||||
$__autoload['sitemapsCinecturlink2'] = $d . 'lib.sitemaps.cinecturlink2.php';
|
||||
$__autoload['cinecturlink2ActivityReportBehaviors'] = $d . 'lib.cinecturlink2.activityreport.php';
|
||||
|
||||
$core->url->register(
|
||||
|
259
_public.php
259
_public.php
@ -10,17 +10,15 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
require_once dirname(__FILE__).'/_widgets.php';
|
||||
require_once dirname(__FILE__) . '/_widgets.php';
|
||||
|
||||
$core->blog->settings->addNamespace('cinecturlink2');
|
||||
|
||||
$c2_tpl_values = array(
|
||||
$c2_tpl_values = [
|
||||
'c2PageFeedID',
|
||||
'c2PageFeedURL',
|
||||
'c2PageURL',
|
||||
@ -59,9 +57,9 @@ $c2_tpl_values = array(
|
||||
'c2CategoryTitle',
|
||||
'c2CategoryDescription',
|
||||
'c2CategoryURL'
|
||||
);
|
||||
];
|
||||
|
||||
$c2_tpl_blocks = array(
|
||||
$c2_tpl_blocks = [
|
||||
'c2If',
|
||||
|
||||
'c2Entries',
|
||||
@ -76,21 +74,18 @@ $c2_tpl_blocks = array(
|
||||
'c2CategoriesHeader',
|
||||
'c2CategoriesFooter',
|
||||
'c2CategoryIf'
|
||||
);
|
||||
];
|
||||
|
||||
if ($core->blog->settings->cinecturlink2->cinecturlink2_active) {
|
||||
|
||||
foreach($c2_tpl_blocks as $v) {
|
||||
$core->tpl->addBlock($v, array('tplCinecturlink2', $v));
|
||||
foreach ($c2_tpl_blocks as $v) {
|
||||
$core->tpl->addBlock($v, ['tplCinecturlink2', $v]);
|
||||
}
|
||||
foreach($c2_tpl_values as $v) {
|
||||
$core->tpl->addValue($v, array('tplCinecturlink2', $v));
|
||||
foreach ($c2_tpl_values as $v) {
|
||||
$core->tpl->addValue($v, ['tplCinecturlink2', $v]);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
||||
foreach(array_merge($c2_tpl_blocks, $c2_tpl_values) as $v) {
|
||||
$core->tpl->addBlock($v, array('tplCinecturlink2', 'disable'));
|
||||
} else {
|
||||
foreach (array_merge($c2_tpl_blocks, $c2_tpl_values) as $v) {
|
||||
$core->tpl->addBlock($v, ['tplCinecturlink2', 'disable']);
|
||||
}
|
||||
}
|
||||
|
||||
@ -102,8 +97,7 @@ class urlCinecturlink2 extends dcUrlHandlers
|
||||
$core->blog->settings->addNamespace('cinecturlink2');
|
||||
|
||||
if (!$core->blog->settings->cinecturlink2->cinecturlink2_active
|
||||
|| !$core->blog->settings->cinecturlink2->cinecturlink2_public_active)
|
||||
{
|
||||
|| !$core->blog->settings->cinecturlink2->cinecturlink2_public_active) {
|
||||
self::p404();
|
||||
|
||||
return null;
|
||||
@ -111,10 +105,10 @@ class urlCinecturlink2 extends dcUrlHandlers
|
||||
|
||||
$core->tpl->setPath(
|
||||
$core->tpl->getPath(),
|
||||
dirname(__FILE__).'/default-templates/'
|
||||
dirname(__FILE__) . '/default-templates/'
|
||||
);
|
||||
|
||||
$params = array();
|
||||
$params = [];
|
||||
|
||||
$n = self::getPageArgs($args, 'c2page');
|
||||
if ($n) {
|
||||
@ -122,42 +116,41 @@ class urlCinecturlink2 extends dcUrlHandlers
|
||||
}
|
||||
|
||||
$caturl = $core->blog->settings->cinecturlink2->cinecturlink2_public_caturl;
|
||||
if (!$caturl) $caturl = 'c2cat';
|
||||
if (!$caturl) {
|
||||
$caturl = 'c2cat';
|
||||
}
|
||||
|
||||
$c = self::getPageArgs($args, $caturl);
|
||||
if ($c) {
|
||||
if (is_numeric($c)) {
|
||||
$params['cat_id'] = (integer) $c;
|
||||
}
|
||||
else {
|
||||
$params['cat_id'] = (int) $c;
|
||||
} else {
|
||||
$params['cat_title'] = urldecode($c);
|
||||
}
|
||||
}
|
||||
|
||||
$f = self::getPageArgs($args, 'feed');
|
||||
if ($f && in_array($f, array('atom', 'rss2'))) {
|
||||
if ($f && in_array($f, ['atom', 'rss2'])) {
|
||||
$mime = $f == 'atom' ? 'application/atom+xml' : 'application/xml';
|
||||
|
||||
//$_ctx->short_feed_items = $core->blog->settings->system->short_feed_items;
|
||||
|
||||
$params['limit'] = $core->blog->settings->system->nb_post_per_feed;
|
||||
$params['limit'] = $core->blog->settings->system->nb_post_per_feed;
|
||||
$_ctx->c2_page_params = $params;
|
||||
|
||||
header('X-Robots-Tag: '.context::robotsPolicy($core->blog->settings->system->robots_policy, ''));
|
||||
self::serveDocument('cinecturlink2-'.$f.'.xml', $mime);
|
||||
}
|
||||
else {
|
||||
header('X-Robots-Tag: ' . context::robotsPolicy($core->blog->settings->system->robots_policy, ''));
|
||||
self::serveDocument('cinecturlink2-' . $f . '.xml', $mime);
|
||||
} else {
|
||||
$d = self::getPageArgs($args, 'c2detail');
|
||||
if ($d) {
|
||||
if (is_numeric($d)) {
|
||||
$params['link_id'] = (integer) $d;
|
||||
}
|
||||
else {
|
||||
$params['link_id'] = (int) $d;
|
||||
} else {
|
||||
$params['link_title'] = urldecode($d);
|
||||
}
|
||||
}
|
||||
|
||||
$params['limit'] = $core->blog->settings->cinecturlink2->cinecturlink2_public_nbrpp;
|
||||
$params['limit'] = $core->blog->settings->cinecturlink2->cinecturlink2_public_nbrpp;
|
||||
$_ctx->c2_page_params = $params;
|
||||
|
||||
self::serveDocument('cinecturlink2.html', 'text/html');
|
||||
@ -168,8 +161,8 @@ class urlCinecturlink2 extends dcUrlHandlers
|
||||
|
||||
protected static function getPageArgs(&$args, $part)
|
||||
{
|
||||
if (preg_match('#(^|/)'.$part.'/([^/]+)#', $args, $m)) {
|
||||
$args = preg_replace('#(^|/)'.$part.'/([^/]+)#', '', $args);
|
||||
if (preg_match('#(^|/)' . $part . '/([^/]+)#', $args, $m)) {
|
||||
$args = preg_replace('#(^|/)' . $part . '/([^/]+)#', '', $args);
|
||||
|
||||
return $m[2];
|
||||
}
|
||||
@ -180,24 +173,24 @@ class urlCinecturlink2 extends dcUrlHandlers
|
||||
|
||||
class tplCinecturlink2
|
||||
{
|
||||
public static function disable($a, $c=null)
|
||||
public static function disable($a, $c = null)
|
||||
{
|
||||
return '';
|
||||
}
|
||||
|
||||
public static function c2PageURL($a)
|
||||
{
|
||||
return "<?php echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), '$core->blog->url.$core->url->getBase(\'cinecturlink2\')')."; ?>";
|
||||
return '<?php echo ' . sprintf($GLOBALS['core']->tpl->getFilters($a), '$core->blog->url.$core->url->getBase(\'cinecturlink2\')') . '; ?>';
|
||||
}
|
||||
|
||||
public static function c2PageTitle($a)
|
||||
{
|
||||
return "<?php \$title = (string) \$core->blog->settings->cinecturlink2->cinecturlink2_public_title; if (empty(\$title)) { \$title = __('My cinecturlink'); } echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), '$title')."; ?>";
|
||||
return "<?php \$title = (string) \$core->blog->settings->cinecturlink2->cinecturlink2_public_title; if (empty(\$title)) { \$title = __('My cinecturlink'); } echo " . sprintf($GLOBALS['core']->tpl->getFilters($a), '$title') . '; ?>';
|
||||
}
|
||||
|
||||
public static function c2PageFeedURL($a)
|
||||
{
|
||||
return "<?php echo ".sprintf($GLOBALS['core']->tpl->getFilters($a),'$core->blog->url.$core->url->getBase("cinecturlink2")."/feed/'.(!empty($a['type']) && preg_match('#^(rss2|atom)$#', $a['type']) ? $a['type'] : 'atom').'"')."; ?>";
|
||||
return '<?php echo ' . sprintf($GLOBALS['core']->tpl->getFilters($a), '$core->blog->url.$core->url->getBase("cinecturlink2")."/feed/' . (!empty($a['type']) && preg_match('#^(rss2|atom)$#', $a['type']) ? $a['type'] : 'atom') . '"') . '; ?>';
|
||||
}
|
||||
|
||||
public static function c2PageFeedID($a)
|
||||
@ -207,45 +200,43 @@ class tplCinecturlink2
|
||||
|
||||
public static function c2PageDescription($a)
|
||||
{
|
||||
return "<?php \$description = (string) \$core->blog->settings->cinecturlink2->cinecturlink2_public_description; echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), '$description')."; ?>";
|
||||
return '<?php $description = (string) $core->blog->settings->cinecturlink2->cinecturlink2_public_description; echo ' . sprintf($GLOBALS['core']->tpl->getFilters($a), '$description') . '; ?>';
|
||||
}
|
||||
|
||||
public static function c2If($a ,$c)
|
||||
public static function c2If($a, $c)
|
||||
{
|
||||
$if = array();
|
||||
$if = [];
|
||||
|
||||
$operator = isset($a['operator']) ? self::getOperator($a['operator']) : '&&';
|
||||
|
||||
if (isset($a['request_link'])) {
|
||||
$sign = (boolean) $a['request_link'] ? '' : '!';
|
||||
$if[] = $sign.'(isset($_ctx->c2_page_params["link_id"]) || isset($_ctx->c2_page_params["link_title"]))';
|
||||
$sign = (bool) $a['request_link'] ? '' : '!';
|
||||
$if[] = $sign . '(isset($_ctx->c2_page_params["link_id"]) || isset($_ctx->c2_page_params["link_title"]))';
|
||||
}
|
||||
|
||||
if (isset($a['request_cat'])) {
|
||||
$sign = (boolean) $a['request_cat'] ? '' : '!';
|
||||
$if[] = $sign.'(isset($_ctx->c2_page_params["cat_id"]) || isset($_ctx->c2_page_params["cat_title"]))';
|
||||
$sign = (bool) $a['request_cat'] ? '' : '!';
|
||||
$if[] = $sign . '(isset($_ctx->c2_page_params["cat_id"]) || isset($_ctx->c2_page_params["cat_title"]))';
|
||||
}
|
||||
|
||||
return empty($if) ? $c : "<?php if(".implode(' '.$operator.' ', $if).") : ?>\n".$c."<?php endif; ?>\n";
|
||||
return empty($if) ? $c : '<?php if(' . implode(' ' . $operator . ' ', $if) . ") : ?>\n" . $c . "<?php endif; ?>\n";
|
||||
}
|
||||
|
||||
public static function c2Entries($a, $c)
|
||||
{
|
||||
$lastn = isset($a['lastn']) ? abs((integer) $a['lastn'])+0 : -1;
|
||||
$lastn = isset($a['lastn']) ? abs((int) $a['lastn']) + 0 : -1;
|
||||
|
||||
$res = 'if (!isset($c2_page_number)) { $c2_page_number = 1; }'."\n";
|
||||
$res = 'if (!isset($c2_page_number)) { $c2_page_number = 1; }' . "\n";
|
||||
|
||||
if ($lastn != 0) {
|
||||
if ($lastn > 0) {
|
||||
$res .= "\$params['limit'] = ".$lastn.";\n";
|
||||
}
|
||||
else {
|
||||
$res .= "\$params['limit'] = " . $lastn . ";\n";
|
||||
} else {
|
||||
$res .= "if (!isset(\$params['limit']) || \$params['limit'] < 1) { \$params['limit'] = 10; }\n";
|
||||
}
|
||||
if (!isset($a['ignore_pagination']) || $a['ignore_pagination'] == "0") {
|
||||
if (!isset($a['ignore_pagination']) || $a['ignore_pagination'] == '0') {
|
||||
$res .= "\$params['limit'] = array(((\$c2_page_number-1)*\$params['limit']),\$params['limit']);\n";
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$res .= "\$params['limit'] = array(0, \$params['limit']);\n";
|
||||
}
|
||||
}
|
||||
@ -253,65 +244,62 @@ class tplCinecturlink2
|
||||
if (isset($a['category'])) {
|
||||
if ($a['category'] == 'null') {
|
||||
$res .= "\$params['sql'] = ' AND L.cat_id IS NULL ';\n";
|
||||
}
|
||||
elseif (is_numeric($a['category'])) {
|
||||
$res .= "\$params['cat_id'] = ".(integer) $a['category'].";\n";
|
||||
}
|
||||
else {
|
||||
$res .= "\$params['cat_title'] = '".$a['category']."';\n";
|
||||
} elseif (is_numeric($a['category'])) {
|
||||
$res .= "\$params['cat_id'] = " . (int) $a['category'] . ";\n";
|
||||
} else {
|
||||
$res .= "\$params['cat_title'] = '" . $a['category'] . "';\n";
|
||||
}
|
||||
}
|
||||
|
||||
$sort = isset($a['sort']) && $a['sort'] == 'asc' ? ' asc' : ' desc';
|
||||
$sortby = isset($a['order']) && in_array($a['order'],array('link_count','link_upddt','link_creadt','link_note','link_title')) ? $a['order'] : 'link_upddt';
|
||||
$sort = isset($a['sort']) && $a['sort'] == 'asc' ? ' asc' : ' desc';
|
||||
$sortby = isset($a['order']) && in_array($a['order'], ['link_count','link_upddt','link_creadt','link_note','link_title']) ? $a['order'] : 'link_upddt';
|
||||
|
||||
$res .=
|
||||
"\$params['order'] = '".$sortby.$sort."';\n";
|
||||
$res .= "\$params['order'] = '" . $sortby . $sort . "';\n";
|
||||
|
||||
return
|
||||
"<?php \n".
|
||||
"\$params = is_array(\$_ctx->c2_page_params) ? \$_ctx->c2_page_params : array(); \n".
|
||||
$res.
|
||||
"\$_ctx->c2_params = \$params; unset(\$params);\n".
|
||||
"if (!\$_ctx->exists('cinecturlink')) { \$_ctx->cinecturlink = new cinecturlink2(\$core); } \n".
|
||||
"\$_ctx->c2_entries = \$_ctx->cinecturlink->getLinks(\$_ctx->c2_params); \n".
|
||||
'while ($_ctx->c2_entries->fetch()) : ?>'.$c.'<?php endwhile; '."\n".
|
||||
"\$_ctx->c2_entries = null; \$_ctx->c2_params = null; \n".
|
||||
"<?php \n" .
|
||||
"\$params = is_array(\$_ctx->c2_page_params) ? \$_ctx->c2_page_params : array(); \n" .
|
||||
$res .
|
||||
"\$_ctx->c2_params = \$params; unset(\$params);\n" .
|
||||
"if (!\$_ctx->exists('cinecturlink')) { \$_ctx->cinecturlink = new cinecturlink2(\$core); } \n" .
|
||||
"\$_ctx->c2_entries = \$_ctx->cinecturlink->getLinks(\$_ctx->c2_params); \n" .
|
||||
'while ($_ctx->c2_entries->fetch()) : ?>' . $c . '<?php endwhile; ' . "\n" .
|
||||
"\$_ctx->c2_entries = null; \$_ctx->c2_params = null; \n" .
|
||||
"?>\n";
|
||||
}
|
||||
|
||||
public static function c2EntriesHeader($a, $c)
|
||||
{
|
||||
return "<?php if (\$_ctx->c2_entries->isStart()) : ?>".$c."<?php endif; ?>";
|
||||
return '<?php if ($_ctx->c2_entries->isStart()) : ?>' . $c . '<?php endif; ?>';
|
||||
}
|
||||
|
||||
public static function c2EntriesFooter($a, $c)
|
||||
{
|
||||
return "<?php if (\$_ctx->c2_entries->isEnd()) : ?>".$c."<?php endif; ?>";
|
||||
return '<?php if ($_ctx->c2_entries->isEnd()) : ?>' . $c . '<?php endif; ?>';
|
||||
}
|
||||
|
||||
public static function c2EntryIf($a, $c)
|
||||
{
|
||||
$if = array();
|
||||
$if = [];
|
||||
|
||||
$operator = isset($a['operator']) ? self::getOperator($a['operator']) : '&&';
|
||||
|
||||
if (isset($a['has_category'])) {
|
||||
$sign = (boolean) $a['has_category'] ? '!' : '=';
|
||||
$if[] = '($_ctx->exists("c2_entries") && "" '.$sign.'= $_ctx->c2_entries->cat_title)';
|
||||
$sign = (bool) $a['has_category'] ? '!' : '=';
|
||||
$if[] = '($_ctx->exists("c2_entries") && "" ' . $sign . '= $_ctx->c2_entries->cat_title)';
|
||||
}
|
||||
|
||||
return empty($if) ? $c : "<?php if(".implode(' '.$operator.' ',$if).") : ?>\n".$c."<?php endif; ?>\n";
|
||||
return empty($if) ? $c : '<?php if(' . implode(' ' . $operator . ' ', $if) . ") : ?>\n" . $c . "<?php endif; ?>\n";
|
||||
}
|
||||
|
||||
public static function c2EntryIfFirst($a)
|
||||
{
|
||||
return '<?php if ($_ctx->c2_entries->index() == 0) { echo "'.(isset($a['return']) ? addslashes(html::escapeHTML($a['return'])) : 'first').'"; } ?>';
|
||||
return '<?php if ($_ctx->c2_entries->index() == 0) { echo "' . (isset($a['return']) ? addslashes(html::escapeHTML($a['return'])) : 'first') . '"; } ?>';
|
||||
}
|
||||
|
||||
public static function c2EntryIfOdd($a)
|
||||
{
|
||||
return '<?php if (($_ctx->c2_entries->index()+1)%2 == 1) { echo "'.(isset($a['return']) ? addslashes(html::escapeHTML($a['return'])) : 'odd').'"; } ?>';
|
||||
return '<?php if (($_ctx->c2_entries->index()+1)%2 == 1) { echo "' . (isset($a['return']) ? addslashes(html::escapeHTML($a['return'])) : 'odd') . '"; } ?>';
|
||||
}
|
||||
|
||||
public static function c2EntryFeedID($a)
|
||||
@ -397,50 +385,50 @@ class tplCinecturlink2
|
||||
public static function c2EntryImg($a)
|
||||
{
|
||||
global $core;
|
||||
$f = $core->tpl->getFilters($a);
|
||||
$f = $core->tpl->getFilters($a);
|
||||
$style = isset($a['style']) ? html::escapeHTML($a['style']) : '';
|
||||
|
||||
return
|
||||
"<?php if (\$_ctx->exists('c2_entries')) { ".
|
||||
"\$widthmax = (integer) \$core->blog->settings->cinecturlink2->cinecturlink2_widthmax; ".
|
||||
"\$img = sprintf('<img src=\"%s\" alt=\"%s\" %s/>',".
|
||||
"\$_ctx->c2_entries->link_img, ".
|
||||
"html::escapeHTML(\$_ctx->c2_entries->link_title.' - '.\$_ctx->c2_entries->link_author), ".
|
||||
"(\$widthmax ? ' style=\"width:'.\$widthmax.'px;$style\"' : '') ".
|
||||
"); ".
|
||||
"echo ".sprintf($f,'$img')."; unset(\$img); } ?> \n";
|
||||
"<?php if (\$_ctx->exists('c2_entries')) { " .
|
||||
'$widthmax = (integer) $core->blog->settings->cinecturlink2->cinecturlink2_widthmax; ' .
|
||||
"\$img = sprintf('<img src=\"%s\" alt=\"%s\" %s/>'," .
|
||||
'$_ctx->c2_entries->link_img, ' .
|
||||
"html::escapeHTML(\$_ctx->c2_entries->link_title.' - '.\$_ctx->c2_entries->link_author), " .
|
||||
"(\$widthmax ? ' style=\"width:'.\$widthmax.'px;$style\"' : '') " .
|
||||
'); ' .
|
||||
'echo ' . sprintf($f, '$img') . "; unset(\$img); } ?> \n";
|
||||
}
|
||||
|
||||
public static function c2EntryDate($a)
|
||||
{
|
||||
$format = !empty($a['format']) ? addslashes($a['format']) : '';
|
||||
|
||||
if (!empty($a['rfc822']))
|
||||
$p = "dt::rfc822(strtotime(\$_ctx->c2_entries->link_creadt), \$_ctx->posts->post_tz)";
|
||||
elseif (!empty($a['iso8601']))
|
||||
$p = "dt::iso8601(strtotime(\$_ctx->c2_entries->link_creadt), \$_ctx->posts->post_tz)";
|
||||
elseif ($format)
|
||||
$p = "dt::dt2str('".$format."', \$_ctx->c2_entries->link_creadt)";
|
||||
else
|
||||
$p = "dt::dt2str(\$core->blog->settings->system->date_format, \$_ctx->c2_entries->link_creadt)";
|
||||
if (!empty($a['rfc822'])) {
|
||||
$p = 'dt::rfc822(strtotime($_ctx->c2_entries->link_creadt), $_ctx->posts->post_tz)';
|
||||
} elseif (!empty($a['iso8601'])) {
|
||||
$p = 'dt::iso8601(strtotime($_ctx->c2_entries->link_creadt), $_ctx->posts->post_tz)';
|
||||
} elseif ($format) {
|
||||
$p = "dt::dt2str('" . $format . "', \$_ctx->c2_entries->link_creadt)";
|
||||
} else {
|
||||
$p = 'dt::dt2str($core->blog->settings->system->date_format, $_ctx->c2_entries->link_creadt)';
|
||||
}
|
||||
|
||||
return self::getGenericValue($p, $a);
|
||||
}
|
||||
|
||||
public static function c2EntryTime($a)
|
||||
{
|
||||
return self::getGenericValue("dt::dt2str(".(!empty($a['format']) ? "'".addslashes($a['format'])."'" : '$core->blog->settings->system->time_format').", \$_ctx->c2_entries->link_creadt)", $a);
|
||||
return self::getGenericValue('dt::dt2str(' . (!empty($a['format']) ? "'" . addslashes($a['format']) . "'" : '$core->blog->settings->system->time_format') . ', $_ctx->c2_entries->link_creadt)', $a);
|
||||
}
|
||||
|
||||
public static function c2Pagination($a, $c)
|
||||
{
|
||||
$p =
|
||||
"<?php\n".
|
||||
"\$params = \$_ctx->c2_params;\n".
|
||||
"\$_ctx->c2_pagination = \$_ctx->cinecturlink->getLinks(\$params,true); unset(\$params);\n".
|
||||
$p = "<?php\n" .
|
||||
"\$params = \$_ctx->c2_params;\n" .
|
||||
"\$_ctx->c2_pagination = \$_ctx->cinecturlink->getLinks(\$params,true); unset(\$params);\n" .
|
||||
"?>\n";
|
||||
|
||||
return isset($a['no_context']) ? $p.$c : $p.'<?php if ($_ctx->c2_pagination->f(0) > $_ctx->c2_entries->count()) : ?>'.$c.'<?php endif; ?>';
|
||||
return isset($a['no_context']) ? $p . $c : $p . '<?php if ($_ctx->c2_pagination->f(0) > $_ctx->c2_entries->count()) : ?>' . $c . '<?php endif; ?>';
|
||||
}
|
||||
|
||||
public static function c2PaginationCounter($a)
|
||||
@ -450,65 +438,65 @@ class tplCinecturlink2
|
||||
|
||||
public static function c2PaginationCurrent($a)
|
||||
{
|
||||
return self::getGenericValue('cinecturlink2Context::PaginationPosition('.(isset($a['offset']) ? (integer) $a['offset'] : 0).')', $a);
|
||||
return self::getGenericValue('cinecturlink2Context::PaginationPosition(' . (isset($a['offset']) ? (int) $a['offset'] : 0) . ')', $a);
|
||||
}
|
||||
|
||||
public static function c2PaginationIf($a, $c)
|
||||
{
|
||||
$if = array();
|
||||
$if = [];
|
||||
|
||||
if (isset($a['start'])) {
|
||||
$sign = (boolean) $a['start'] ? '' : '!';
|
||||
$if[] = $sign.'cinecturlink2Context::PaginationStart()';
|
||||
$sign = (bool) $a['start'] ? '' : '!';
|
||||
$if[] = $sign . 'cinecturlink2Context::PaginationStart()';
|
||||
}
|
||||
if (isset($a['end'])) {
|
||||
$sign = (boolean) $a['end'] ? '' : '!';
|
||||
$if[] = $sign.'cinecturlink2Context::PaginationEnd()';
|
||||
$sign = (bool) $a['end'] ? '' : '!';
|
||||
$if[] = $sign . 'cinecturlink2Context::PaginationEnd()';
|
||||
}
|
||||
|
||||
return empty($if) ? $c : '<?php if('.implode(' && ', $if).') : ?>'.$c.'<?php endif; ?>';
|
||||
return empty($if) ? $c : '<?php if(' . implode(' && ', $if) . ') : ?>' . $c . '<?php endif; ?>';
|
||||
}
|
||||
|
||||
public static function c2PaginationURL($a)
|
||||
{
|
||||
return self::getGenericValue('cinecturlink2Context::PaginationURL('.(isset($a['offset']) ? (integer) $a['offset'] : 0).')', $a);
|
||||
return self::getGenericValue('cinecturlink2Context::PaginationURL(' . (isset($a['offset']) ? (int) $a['offset'] : 0) . ')', $a);
|
||||
}
|
||||
|
||||
public static function c2Categories($a, $c)
|
||||
{
|
||||
return
|
||||
"<?php \n".
|
||||
"if (!\$_ctx->exists('cinecturlink')) { \$_ctx->cinecturlink = new cinecturlink2(\$core); } \n".
|
||||
"\$_ctx->c2_categories = \$_ctx->cinecturlink->getCategories(); \n".
|
||||
'while ($_ctx->c2_categories->fetch()) : ?>'.$c.'<?php endwhile; '."\n".
|
||||
"\$_ctx->c2_categories = null; \n".
|
||||
"<?php \n" .
|
||||
"if (!\$_ctx->exists('cinecturlink')) { \$_ctx->cinecturlink = new cinecturlink2(\$core); } \n" .
|
||||
"\$_ctx->c2_categories = \$_ctx->cinecturlink->getCategories(); \n" .
|
||||
'while ($_ctx->c2_categories->fetch()) : ?>' . $c . '<?php endwhile; ' . "\n" .
|
||||
"\$_ctx->c2_categories = null; \n" .
|
||||
"?>\n";
|
||||
}
|
||||
|
||||
public static function c2CategoriesHeader($a, $c)
|
||||
{
|
||||
return "<?php if (\$_ctx->c2_categories->isStart()) : ?>".$c."<?php endif; ?>";
|
||||
return '<?php if ($_ctx->c2_categories->isStart()) : ?>' . $c . '<?php endif; ?>';
|
||||
}
|
||||
|
||||
public static function c2CategoriesFooter($a, $c)
|
||||
{
|
||||
return "<?php if (\$_ctx->c2_categories->isEnd()) : ?>".$c."<?php endif; ?>";
|
||||
return '<?php if ($_ctx->c2_categories->isEnd()) : ?>' . $c . '<?php endif; ?>';
|
||||
}
|
||||
|
||||
public static function c2CategoryIf($a, $c)
|
||||
{
|
||||
$if = array();
|
||||
$if = [];
|
||||
|
||||
if (isset($a['current'])) {
|
||||
$sign = (boolean) $a['current'] ? '' : '!';
|
||||
$if[] = $sign.'cinecturlink2Context::CategoryCurrent()';
|
||||
$sign = (bool) $a['current'] ? '' : '!';
|
||||
$if[] = $sign . 'cinecturlink2Context::CategoryCurrent()';
|
||||
}
|
||||
if (isset($a['first'])) {
|
||||
$sign = (boolean) $a['first'] ? '' : '!';
|
||||
$if[] = $sign.'$_ctx->c2_categories->isStart()';
|
||||
$sign = (bool) $a['first'] ? '' : '!';
|
||||
$if[] = $sign . '$_ctx->c2_categories->isStart()';
|
||||
}
|
||||
|
||||
return empty($if) ? $c : '<?php if('.implode(' && ', $if).') : ?>'.$c.'<?php endif; ?>';
|
||||
return empty($if) ? $c : '<?php if(' . implode(' && ', $if) . ') : ?>' . $c . '<?php endif; ?>';
|
||||
}
|
||||
|
||||
public static function c2CategoryFeedURL($a)
|
||||
@ -519,7 +507,7 @@ class tplCinecturlink2
|
||||
$p = 'atom';
|
||||
}
|
||||
|
||||
return "<?php echo ".sprintf($GLOBALS['core']->tpl->getFilters($a),'$core->blog->url.$core->url->getBase("cinecturlink2")."/".$core->blog->settings->cinecturlink2->cinecturlink2_public_caturl."/".urlencode($_ctx->c2_categories->cat_title)."/feed/'.$p.'"')."; ?>";
|
||||
return '<?php echo ' . sprintf($GLOBALS['core']->tpl->getFilters($a), '$core->blog->url.$core->url->getBase("cinecturlink2")."/".$core->blog->settings->cinecturlink2->cinecturlink2_public_caturl."/".urlencode($_ctx->c2_categories->cat_title)."/feed/' . $p . '"') . '; ?>';
|
||||
}
|
||||
|
||||
public static function c2CategoryFeedID($a)
|
||||
@ -529,33 +517,32 @@ class tplCinecturlink2
|
||||
|
||||
public static function c2CategoryID($a)
|
||||
{
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), '$_ctx->c2_categories->cat_id')."; } ?>";
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo " . sprintf($GLOBALS['core']->tpl->getFilters($a), '$_ctx->c2_categories->cat_id') . '; } ?>';
|
||||
}
|
||||
|
||||
public static function c2CategoryTitle($a)
|
||||
{
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), '$_ctx->c2_categories->cat_title')."; } ?>";
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo " . sprintf($GLOBALS['core']->tpl->getFilters($a), '$_ctx->c2_categories->cat_title') . '; } ?>';
|
||||
}
|
||||
|
||||
public static function c2CategoryDescription($a)
|
||||
{
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), '$_ctx->c2_categories->cat_desc')."; } ?>";
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo " . sprintf($GLOBALS['core']->tpl->getFilters($a), '$_ctx->c2_categories->cat_desc') . '; } ?>';
|
||||
}
|
||||
|
||||
public static function c2CategoryURL($a)
|
||||
{
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), '$core->blog->url.$core->url->getBase("cinecturlink2")."/".$core->blog->settings->cinecturlink2->cinecturlink2_public_caturl."/".urlencode($_ctx->c2_categories->cat_title)')."; } ?>";
|
||||
return "<?php if (\$_ctx->exists('c2_categories')) { echo " . sprintf($GLOBALS['core']->tpl->getFilters($a), '$core->blog->url.$core->url->getBase("cinecturlink2")."/".$core->blog->settings->cinecturlink2->cinecturlink2_public_caturl."/".urlencode($_ctx->c2_categories->cat_title)') . '; } ?>';
|
||||
}
|
||||
|
||||
protected static function getGenericValue($p,$a)
|
||||
protected static function getGenericValue($p, $a)
|
||||
{
|
||||
return "<?php if (\$_ctx->exists('c2_entries')) { echo ".sprintf($GLOBALS['core']->tpl->getFilters($a), "$p")."; } ?>";
|
||||
return "<?php if (\$_ctx->exists('c2_entries')) { echo " . sprintf($GLOBALS['core']->tpl->getFilters($a), "$p") . '; } ?>';
|
||||
}
|
||||
|
||||
protected static function getOperator($op)
|
||||
{
|
||||
switch (strtolower($op))
|
||||
{
|
||||
switch (strtolower($op)) {
|
||||
case 'or':
|
||||
case '||':
|
||||
return '||';
|
||||
|
121
_uninstall.php
121
_uninstall.php
@ -10,77 +10,116 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$this->addUserAction(
|
||||
/* type */ 'settings',
|
||||
/* action */ 'delete_all',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* desc */ __('delete all settings')
|
||||
/* type */
|
||||
'settings',
|
||||
/* action */
|
||||
'delete_all',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* desc */
|
||||
__('delete all settings')
|
||||
);
|
||||
|
||||
$this->addUserAction(
|
||||
/* type */ 'tables',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2')
|
||||
/* type */
|
||||
'tables',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* desc */
|
||||
sprintf(__('delete %s table'), 'cinecturlink2')
|
||||
);
|
||||
|
||||
$this->addUserAction(
|
||||
/* type */ 'tables',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2_cat',
|
||||
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2_cat')
|
||||
/* type */
|
||||
'tables',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2_cat',
|
||||
/* desc */
|
||||
sprintf(__('delete %s table'), 'cinecturlink2_cat')
|
||||
);
|
||||
|
||||
$this->addUserAction(
|
||||
/* type */ 'versions',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* desc */ __('delete the version number')
|
||||
/* type */
|
||||
'versions',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* desc */
|
||||
__('delete the version number')
|
||||
);
|
||||
|
||||
$this->addUserAction(
|
||||
/* type */ 'plugins',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* desc */ __('delete plugin files')
|
||||
/* type */
|
||||
'plugins',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* desc */
|
||||
__('delete plugin files')
|
||||
);
|
||||
|
||||
$this->addDirectAction(
|
||||
/* type */ 'settings',
|
||||
/* action */ 'delete_all',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* desc */ sprintf(__('delete all %s settings'), 'cinecturlink2')
|
||||
/* type */
|
||||
'settings',
|
||||
/* action */
|
||||
'delete_all',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* desc */
|
||||
sprintf(__('delete all %s settings'), 'cinecturlink2')
|
||||
);
|
||||
|
||||
$this->addDirectAction(
|
||||
/* type */ 'tables',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2')
|
||||
/* type */
|
||||
'tables',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* desc */
|
||||
sprintf(__('delete %s table'), 'cinecturlink2')
|
||||
);
|
||||
|
||||
$this->addDirectAction(
|
||||
/* type */ 'tables',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2_cat',
|
||||
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2_cat')
|
||||
/* type */
|
||||
'tables',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2_cat',
|
||||
/* desc */
|
||||
sprintf(__('delete %s table'), 'cinecturlink2_cat')
|
||||
);
|
||||
|
||||
$this->addDirectAction(
|
||||
/* type */ 'versions',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* desc */ sprintf(__('delete %s version number'), 'cinecturlink2')
|
||||
/* type */
|
||||
'versions',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* desc */
|
||||
sprintf(__('delete %s version number'), 'cinecturlink2')
|
||||
);
|
||||
|
||||
$this->addDirectAction(
|
||||
/* type */ 'plugins',
|
||||
/* action */ 'delete',
|
||||
/* ns */ 'cinecturlink2',
|
||||
/* description */ sprintf(__('delete %s plugin files'), 'cinecturlink2')
|
||||
/* type */
|
||||
'plugins',
|
||||
/* action */
|
||||
'delete',
|
||||
/* ns */
|
||||
'cinecturlink2',
|
||||
/* description */
|
||||
sprintf(__('delete %s plugin files'), 'cinecturlink2')
|
||||
);
|
85
_widgets.php
85
_widgets.php
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
return null;
|
||||
}
|
||||
@ -33,21 +32,21 @@ class cinecturlink2Widget
|
||||
$C2 = new cinecturlink2($core);
|
||||
|
||||
$categories_combo = ['' => '', __('Uncategorized') => 'null'];
|
||||
$categories = $C2->getCategories();
|
||||
while($categories->fetch()) {
|
||||
$cat_title = html::escapeHTML($categories->cat_title);
|
||||
$categories = $C2->getCategories();
|
||||
while ($categories->fetch()) {
|
||||
$cat_title = html::escapeHTML($categories->cat_title);
|
||||
$categories_combo[$cat_title] = $categories->cat_id;
|
||||
}
|
||||
|
||||
$sortby_combo = [
|
||||
__('Update date') => 'link_upddt',
|
||||
__('My rating') => 'link_note',
|
||||
__('Title') => 'link_title',
|
||||
__('Random') => 'RANDOM',
|
||||
__('Update date') => 'link_upddt',
|
||||
__('My rating') => 'link_note',
|
||||
__('Title') => 'link_title',
|
||||
__('Random') => 'RANDOM',
|
||||
__('Number of views') => 'COUNTER'
|
||||
];
|
||||
$order_combo = [
|
||||
__('Ascending') => 'asc',
|
||||
__('Ascending') => 'asc',
|
||||
__('Descending') => 'desc'
|
||||
];
|
||||
|
||||
@ -174,13 +173,12 @@ class cinecturlink2Widget
|
||||
if ($w->category) {
|
||||
if ($w->category == 'null') {
|
||||
$params['sql'] = ' AND L.cat_id IS NULL ';
|
||||
}
|
||||
elseif (is_numeric($w->category)) {
|
||||
$params['cat_id'] = (integer) $w->category;
|
||||
} elseif (is_numeric($w->category)) {
|
||||
$params['cat_id'] = (int) $w->category;
|
||||
}
|
||||
}
|
||||
|
||||
$limit = abs((integer) $w->limit);
|
||||
$limit = abs((int) $w->limit);
|
||||
|
||||
// Tirage aléatoire: Consomme beaucoup de ressources!
|
||||
if ($w->sortby == 'RANDOM') {
|
||||
@ -190,15 +188,15 @@ class cinecturlink2Widget
|
||||
return null;
|
||||
}
|
||||
|
||||
$ids= [];
|
||||
while($big_rs->fetch()) {
|
||||
$ids = [];
|
||||
while ($big_rs->fetch()) {
|
||||
$ids[] = $big_rs->link_id;
|
||||
}
|
||||
shuffle($ids);
|
||||
$ids = array_slice($ids, 0, $limit);
|
||||
|
||||
$params['link_id'] = [];
|
||||
foreach($ids as $id) {
|
||||
foreach ($ids as $id) {
|
||||
$params['link_id'][] = $id;
|
||||
}
|
||||
} elseif ($w->sortby == 'COUNTER') {
|
||||
@ -216,26 +214,25 @@ class cinecturlink2Widget
|
||||
return null;
|
||||
}
|
||||
|
||||
$widthmax = (integer) $core->blog->settings->cinecturlink2->cinecturlink2_widthmax;
|
||||
$style = $widthmax ? ' style="width:' . $widthmax . 'px;"' : '';
|
||||
$widthmax = (int) $core->blog->settings->cinecturlink2->cinecturlink2_widthmax;
|
||||
$style = $widthmax ? ' style="width:' . $widthmax . 'px;"' : '';
|
||||
|
||||
$entries = [];
|
||||
while($rs->fetch()) {
|
||||
$url = $rs->link_url;
|
||||
$img = $rs->link_img;
|
||||
$title = html::escapeHTML($rs->link_title);
|
||||
while ($rs->fetch()) {
|
||||
$url = $rs->link_url;
|
||||
$img = $rs->link_img;
|
||||
$title = html::escapeHTML($rs->link_title);
|
||||
$author = html::escapeHTML($rs->link_author);
|
||||
$cat = html::escapeHTML($rs->cat_title);
|
||||
$note = $w->shownote ? ' <em>(' . $rs->link_note . '/20)</em>' : '';
|
||||
$desc = $w->showdesc ? '<br /><em>' . html::escapeHTML($rs->link_desc) . '</em>' : '';
|
||||
$lang = $rs->link_lang ? ' hreflang="' . $rs->link_lang . '"' : '';
|
||||
$count = abs((integer) $rs->link_count);
|
||||
$cat = html::escapeHTML($rs->cat_title);
|
||||
$note = $w->shownote ? ' <em>(' . $rs->link_note . '/20)</em>' : '';
|
||||
$desc = $w->showdesc ? '<br /><em>' . html::escapeHTML($rs->link_desc) . '</em>' : '';
|
||||
$lang = $rs->link_lang ? ' hreflang="' . $rs->link_lang . '"' : '';
|
||||
$count = abs((int) $rs->link_count);
|
||||
|
||||
# --BEHAVIOR-- cinecturlink2WidgetLinks
|
||||
$bhv = $core->callBehavior('cinecturlink2WidgetLinks', $rs->link_id);
|
||||
|
||||
$entries[] =
|
||||
'<p style="text-align:center;">' .
|
||||
$entries[] = '<p style="text-align:center;">' .
|
||||
($w->withlink && !empty($url) ? '<a href="' . $url . '"' . $lang . ' title="' . $cat . '">' : '') .
|
||||
'<strong>' . $title . '</strong>' . $note . '<br />' .
|
||||
($w->showauthor ? $author . '<br />' : '') . '<br />' .
|
||||
@ -245,11 +242,10 @@ class cinecturlink2Widget
|
||||
'</p>' . $bhv;
|
||||
|
||||
try {
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur->link_count = ($count + 1);
|
||||
$C2->updLink($rs->link_id, $cur, false);
|
||||
} catch (Exception $e) {
|
||||
|
||||
}
|
||||
}
|
||||
# Tirage aléatoire
|
||||
@ -264,10 +260,11 @@ class cinecturlink2Widget
|
||||
|
||||
return $w->renderDiv(
|
||||
$w->content_only,
|
||||
'cinecturlink2list '. $w->class,
|
||||
'cinecturlink2list ' . $w->class,
|
||||
'',
|
||||
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '') . implode(' ',$entries) .
|
||||
($w->showpagelink && $core->blog->settings->cinecturlink2->cinecturlink2_public_active ?
|
||||
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '') . implode(' ', $entries) .
|
||||
(
|
||||
$w->showpagelink && $core->blog->settings->cinecturlink2->cinecturlink2_public_active ?
|
||||
'<p><a href="' . $core->blog->url . $core->url->getBase('cinecturlink2') . '" title="' . __('view all links') . '">' . __('More links') . '</a></p>' : ''
|
||||
)
|
||||
);
|
||||
@ -293,33 +290,31 @@ class cinecturlink2Widget
|
||||
return null;
|
||||
}
|
||||
|
||||
$res = [];
|
||||
$res[] =
|
||||
'<li><a href="' .
|
||||
$res = [];
|
||||
$res[] = '<li><a href="' .
|
||||
$core->blog->url . $core->url->getBase('cinecturlink2') .
|
||||
'" title="' . __('view all links') . '">' . __('all links') .
|
||||
'</a>'. ($w->shownumlink ? ' ('. ($C2->getLinks([], true)->f(0)) . ')' : '') .
|
||||
'</a>' . ($w->shownumlink ? ' (' . ($C2->getLinks([], true)->f(0)) . ')' : '') .
|
||||
'</li>';
|
||||
|
||||
while($rs->fetch()) {
|
||||
$res[] =
|
||||
'<li><a href="' .
|
||||
while ($rs->fetch()) {
|
||||
$res[] = '<li><a href="' .
|
||||
$core->blog->url . $core->url->getBase('cinecturlink2') . '/' .
|
||||
$core->blog->settings->cinecturlink2->cinecturlink2_public_caturl . '/' .
|
||||
urlencode($rs->cat_title) .
|
||||
'" title="'.__('view links of this category') . '">' .
|
||||
'" title="' . __('view links of this category') . '">' .
|
||||
html::escapeHTML($rs->cat_title) .
|
||||
'</a>'. ($w->shownumlink ? ' (' .
|
||||
'</a>' . ($w->shownumlink ? ' (' .
|
||||
($C2->getLinks(['cat_id' => $rs->cat_id], true)->f(0)) . ')' : '') .
|
||||
'</li>';
|
||||
}
|
||||
|
||||
return $w->renderDiv(
|
||||
$w->content_only,
|
||||
'cinecturlink2cat '. $w->class,
|
||||
'cinecturlink2cat ' . $w->class,
|
||||
'',
|
||||
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '') .
|
||||
'<ul>' . implode(' ',$res) . '</ul>'
|
||||
'<ul>' . implode(' ', $res) . '</ul>'
|
||||
);
|
||||
}
|
||||
}
|
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
return null;
|
||||
}
|
||||
@ -40,10 +39,10 @@ class cinecturlink2
|
||||
{
|
||||
$core->blog->settings->addNamespace('cinecturlink2');
|
||||
|
||||
$this->core = $core;
|
||||
$this->con = $core->con;
|
||||
$this->core = $core;
|
||||
$this->con = $core->con;
|
||||
$this->table = $core->prefix . 'cinecturlink2';
|
||||
$this->blog = $core->con->escape($core->blog->id);
|
||||
$this->blog = $core->con->escape($core->blog->id);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -63,8 +62,7 @@ class cinecturlink2
|
||||
$content_req .= implode(', ', $params['columns']) . ', ';
|
||||
}
|
||||
|
||||
$strReq =
|
||||
'SELECT L.link_id, L.blog_id, L.cat_id, L.user_id, L.link_type, ' .
|
||||
$strReq = 'SELECT L.link_id, L.blog_id, L.cat_id, L.user_id, L.link_type, ' .
|
||||
$content_req .
|
||||
'L.link_creadt, L.link_upddt, L.link_note, L.link_count, ' .
|
||||
'L.link_title, L.link_desc, L.link_author, ' .
|
||||
@ -74,8 +72,7 @@ class cinecturlink2
|
||||
'C.cat_title, C.cat_desc ';
|
||||
}
|
||||
|
||||
$strReq .=
|
||||
'FROM '. $this->table . ' L ' .
|
||||
$strReq .= 'FROM ' . $this->table . ' L ' .
|
||||
'INNER JOIN ' . $this->core->prefix . 'user U ON U.user_id = L.user_id ' .
|
||||
'LEFT OUTER JOIN ' . $this->table . '_cat C ON L.cat_id = C.cat_id ';
|
||||
|
||||
@ -97,18 +94,18 @@ class cinecturlink2
|
||||
|
||||
if (!empty($params['link_id'])) {
|
||||
if (is_array($params['link_id'])) {
|
||||
array_walk($params['link_id'], function(&$v, $k){ if($v !== null) { $v = (integer) $v;}});
|
||||
array_walk($params['link_id'], function (&$v, $k) { if ($v !== null) { $v = (int) $v;}});
|
||||
} else {
|
||||
$params['link_id'] = [(integer) $params['link_id']];
|
||||
$params['link_id'] = [(int) $params['link_id']];
|
||||
}
|
||||
$strReq .= 'AND L.link_id ' . $this->con->in($params['link_id']);
|
||||
}
|
||||
|
||||
if (!empty($params['cat_id'])) {
|
||||
if (is_array($params['cat_id'])) {
|
||||
array_walk($params['cat_id'], function(&$v, $k) { if($v !== null) { $v = (integer) $v;}});
|
||||
array_walk($params['cat_id'], function (&$v, $k) { if ($v !== null) { $v = (int) $v;}});
|
||||
} else {
|
||||
$params['cat_id'] = [(integer) $params['cat_id']];
|
||||
$params['cat_id'] = [(int) $params['cat_id']];
|
||||
}
|
||||
$strReq .= 'AND L.cat_id ' . $this->con->in($params['cat_id']);
|
||||
}
|
||||
@ -166,17 +163,18 @@ class cinecturlink2
|
||||
$cur->link_note = 10;
|
||||
}
|
||||
|
||||
$cur->link_id = $this->getNextLinkId();
|
||||
$cur->blog_id = $this->blog;
|
||||
$cur->user_id = $this->core->auth->userID();
|
||||
$cur->link_id = $this->getNextLinkId();
|
||||
$cur->blog_id = $this->blog;
|
||||
$cur->user_id = $this->core->auth->userID();
|
||||
$cur->link_creadt = date('Y-m-d H:i:s');
|
||||
$cur->link_upddt = date('Y-m-d H:i:s');
|
||||
$cur->link_pos = 0;
|
||||
$cur->link_count = 0;
|
||||
$cur->link_upddt = date('Y-m-d H:i:s');
|
||||
$cur->link_pos = 0;
|
||||
$cur->link_count = 0;
|
||||
$cur->insert();
|
||||
$this->con->unlock();
|
||||
} catch (Exception $e) {
|
||||
$this->con->unlock();
|
||||
|
||||
throw $e;
|
||||
}
|
||||
$this->trigger();
|
||||
@ -196,7 +194,7 @@ class cinecturlink2
|
||||
*/
|
||||
public function updLink($id, cursor $cur, $behavior = true)
|
||||
{
|
||||
$id = (integer) $id;
|
||||
$id = (int) $id;
|
||||
|
||||
if (empty($id)) {
|
||||
throw new Exception(__('No such link ID'));
|
||||
@ -204,7 +202,7 @@ class cinecturlink2
|
||||
|
||||
$cur->link_upddt = date('Y-m-d H:i:s');
|
||||
|
||||
$cur->update("WHERE link_id = " . $id . " AND blog_id = '" . $this->blog . "' ");
|
||||
$cur->update('WHERE link_id = ' . $id . " AND blog_id = '" . $this->blog . "' ");
|
||||
$this->trigger();
|
||||
|
||||
if ($behavior) {
|
||||
@ -220,7 +218,7 @@ class cinecturlink2
|
||||
*/
|
||||
public function delLink($id)
|
||||
{
|
||||
$id = (integer) $id;
|
||||
$id = (int) $id;
|
||||
|
||||
if (empty($id)) {
|
||||
throw new Exception(__('No such link ID'));
|
||||
@ -261,15 +259,13 @@ class cinecturlink2
|
||||
{
|
||||
if ($count_only) {
|
||||
$strReq = 'SELECT count(C.cat_id) ';
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
$content_req = '';
|
||||
if (!empty($params['columns']) && is_array($params['columns'])) {
|
||||
$content_req .= implode(', ', $params['columns']) . ', ';
|
||||
}
|
||||
|
||||
$strReq =
|
||||
'SELECT C.cat_id, C.blog_id, C.cat_title, C.cat_desc, ' .
|
||||
$strReq = 'SELECT C.cat_id, C.blog_id, C.cat_title, C.cat_desc, ' .
|
||||
$content_req .
|
||||
'C.cat_pos, C.cat_creadt, C.cat_upddt ';
|
||||
}
|
||||
@ -284,18 +280,18 @@ class cinecturlink2
|
||||
|
||||
if (!empty($params['cat_id'])) {
|
||||
if (is_array($params['cat_id'])) {
|
||||
array_walk($params['cat_id'], function(&$v, $k) { if($v !== null) { $v = (integer) $v; }});
|
||||
array_walk($params['cat_id'], function (&$v, $k) { if ($v !== null) { $v = (int) $v; }});
|
||||
} else {
|
||||
$params['cat_id'] = [(integer) $params['cat_id']];
|
||||
$params['cat_id'] = [(int) $params['cat_id']];
|
||||
}
|
||||
$strReq .= 'AND C.cat_id ' . $this->con->in($params['cat_id']);
|
||||
}
|
||||
|
||||
if (isset($params['exclude_cat_id']) && $params['exclude_cat_id'] !== '') {
|
||||
if (is_array($params['exclude_cat_id'])) {
|
||||
array_walk($params['exclude_cat_id'], function (&$v, $k) { if ($v !== null) {$v = (integer) $v;}});
|
||||
array_walk($params['exclude_cat_id'], function (&$v, $k) { if ($v !== null) {$v = (int) $v;}});
|
||||
} else {
|
||||
$params['exclude_cat_id'] = [(integer) $params['exclude_cat_id']];
|
||||
$params['exclude_cat_id'] = [(int) $params['exclude_cat_id']];
|
||||
}
|
||||
$strReq .= 'AND C.cat_id NOT ' . $this->con->in($params['exclude_cat_id']);
|
||||
}
|
||||
@ -341,15 +337,16 @@ class cinecturlink2
|
||||
throw new Exception(__('No category description'));
|
||||
}
|
||||
|
||||
$cur->cat_id = $this->getNextCatId();
|
||||
$cur->cat_pos = $this->getNextCatPos();
|
||||
$cur->blog_id = $this->blog;
|
||||
$cur->cat_id = $this->getNextCatId();
|
||||
$cur->cat_pos = $this->getNextCatPos();
|
||||
$cur->blog_id = $this->blog;
|
||||
$cur->cat_creadt = date('Y-m-d H:i:s');
|
||||
$cur->cat_upddt = date('Y-m-d H:i:s');
|
||||
$cur->cat_upddt = date('Y-m-d H:i:s');
|
||||
$cur->insert();
|
||||
$this->con->unlock();
|
||||
} catch (Exception $e) {
|
||||
$this->con->unlock();
|
||||
|
||||
throw $e;
|
||||
}
|
||||
$this->trigger();
|
||||
@ -365,7 +362,7 @@ class cinecturlink2
|
||||
*/
|
||||
public function updCategory($id, cursor $cur)
|
||||
{
|
||||
$id = (integer) $id;
|
||||
$id = (int) $id;
|
||||
|
||||
if (empty($id)) {
|
||||
throw new Exception(__('No such category ID'));
|
||||
@ -373,7 +370,7 @@ class cinecturlink2
|
||||
|
||||
$cur->cat_upddt = date('Y-m-d H:i:s');
|
||||
|
||||
$cur->update("WHERE cat_id = " . $id . " AND blog_id = '" . $this->blog . "' ");
|
||||
$cur->update('WHERE cat_id = ' . $id . " AND blog_id = '" . $this->blog . "' ");
|
||||
$this->trigger();
|
||||
}
|
||||
|
||||
@ -384,7 +381,7 @@ class cinecturlink2
|
||||
*/
|
||||
public function delCategory($id)
|
||||
{
|
||||
$id = (integer) $id;
|
||||
$id = (int) $id;
|
||||
|
||||
if (empty($id)) {
|
||||
throw new Exception(__('No such category ID'));
|
||||
@ -397,10 +394,10 @@ class cinecturlink2
|
||||
);
|
||||
|
||||
# Update link cat to NULL
|
||||
$cur = $this->con->openCursor($this->table);
|
||||
$cur->cat_id = NULL;
|
||||
$cur = $this->con->openCursor($this->table);
|
||||
$cur->cat_id = null;
|
||||
$cur->link_upddt = date('Y-m-d H:i:s');
|
||||
$cur->update("WHERE cat_id = " . $id . " AND blog_id = '" . $this->blog . "' ");
|
||||
$cur->update('WHERE cat_id = ' . $id . " AND blog_id = '" . $this->blog . "' ");
|
||||
|
||||
$this->trigger();
|
||||
}
|
||||
@ -453,9 +450,11 @@ class cinecturlink2
|
||||
if ($throw) {
|
||||
throw new Exception(__('Failed to create public folder for images.'));
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -468,9 +467,9 @@ class cinecturlink2
|
||||
public static function getPublicDirs($core)
|
||||
{
|
||||
$dirs = [];
|
||||
$all = files::getDirList($core->blog->public_path);
|
||||
foreach($all['dirs'] as $dir) {
|
||||
$dir = substr($dir, strlen($core->blog->public_path) + 1);
|
||||
$all = files::getDirList($core->blog->public_path);
|
||||
foreach ($all['dirs'] as $dir) {
|
||||
$dir = substr($dir, strlen($core->blog->public_path) + 1);
|
||||
$dirs[$dir] = $dir;
|
||||
}
|
||||
|
||||
|
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
return null;
|
||||
}
|
||||
|
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
class cinecturlink2Context
|
||||
{
|
||||
public static function PaginationNbPages()
|
||||
@ -20,9 +19,9 @@ class cinecturlink2Context
|
||||
if ($_ctx->c2_pagination === null) {
|
||||
return false;
|
||||
}
|
||||
$nb_posts = $_ctx->c2_pagination->f(0);
|
||||
$nb_posts = $_ctx->c2_pagination->f(0);
|
||||
$nb_per_page = $_ctx->c2_params['limit'][1];
|
||||
$nb_pages = ceil($nb_posts/$nb_per_page);
|
||||
$nb_pages = ceil($nb_posts / $nb_per_page);
|
||||
|
||||
return $nb_pages;
|
||||
}
|
||||
@ -34,11 +33,12 @@ class cinecturlink2Context
|
||||
} else {
|
||||
$p = 1;
|
||||
}
|
||||
$p = $p+$offset;
|
||||
$p = $p + $offset;
|
||||
$n = self::PaginationNbPages();
|
||||
if (!$n) {
|
||||
return $p;
|
||||
}
|
||||
|
||||
return $p > $n || $p <= 0 ? 1 : $p;
|
||||
}
|
||||
|
||||
@ -47,6 +47,7 @@ class cinecturlink2Context
|
||||
if (isset($GLOBALS['c2_page_number'])) {
|
||||
return self::PaginationPosition() == 1;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -55,6 +56,7 @@ class cinecturlink2Context
|
||||
if (isset($GLOBALS['c2_page_number'])) {
|
||||
return self::PaginationPosition() == self::PaginationNbPages();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -74,9 +76,10 @@ class cinecturlink2Context
|
||||
}
|
||||
# If search param
|
||||
if (!empty($_GET['q'])) {
|
||||
$s = strpos($url,'?') !== false ? '&' : '?';
|
||||
$s = strpos($url, '?') !== false ? '&' : '?';
|
||||
$url .= $s . 'q=' . rawurlencode($_GET['q']);
|
||||
}
|
||||
|
||||
return $url;
|
||||
}
|
||||
|
||||
@ -99,6 +102,7 @@ class cinecturlink2Context
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
return null;
|
||||
}
|
||||
@ -27,9 +26,9 @@ class adminlistCinecturlink2
|
||||
|
||||
public function __construct(dcCore $core, $rs, $rs_count)
|
||||
{
|
||||
$this->core = &$core;
|
||||
$this->rs = &$rs;
|
||||
$this->rs_count = $rs_count;
|
||||
$this->core = &$core;
|
||||
$this->rs = &$rs;
|
||||
$this->rs_count = $rs_count;
|
||||
$this->html_prev = __('« prev.');
|
||||
$this->html_next = __('next »');
|
||||
}
|
||||
@ -58,33 +57,33 @@ class adminlistCinecturlink2
|
||||
echo '<p><strong>' . __('No link') . '</strong></p>';
|
||||
}
|
||||
} else {
|
||||
$pager = new dcPager($page, $this->rs_count, $nb_per_page, 10);
|
||||
$pager = new dcPager($page, $this->rs_count, $nb_per_page, 10);
|
||||
$links = [];
|
||||
if (isset($_REQUEST['links'])) {
|
||||
foreach ($_REQUEST['links'] as $v) {
|
||||
$links[(integer) $v] = true;
|
||||
$links[(int) $v] = true;
|
||||
}
|
||||
}
|
||||
|
||||
$cols = [
|
||||
'title' => '<th colspan="2" class="first">' . __('Title') . '</th>',
|
||||
'author' => '<th scope="col">' . __('Author') . '</th>',
|
||||
'desc' => '<th scope="col">' . __('Description') . '</th>',
|
||||
'link' => '<th scope="col">' . __('Links') . '</th>',
|
||||
'cat' => '<th scope="col">' . __('Category') . '</th>',
|
||||
'note' => '<th scope="col">' . __('Rating') . '</th>',
|
||||
'date' => '<th scope="col">' . __('Date') . '</th>'
|
||||
'title' => '<th colspan="2" class="first">' . __('Title') . '</th>',
|
||||
'author' => '<th scope="col">' . __('Author') . '</th>',
|
||||
'desc' => '<th scope="col">' . __('Description') . '</th>',
|
||||
'link' => '<th scope="col">' . __('Links') . '</th>',
|
||||
'cat' => '<th scope="col">' . __('Category') . '</th>',
|
||||
'note' => '<th scope="col">' . __('Rating') . '</th>',
|
||||
'date' => '<th scope="col">' . __('Date') . '</th>'
|
||||
];
|
||||
$cols = new ArrayObject($cols);
|
||||
$this->userColumns('c2link', $cols);
|
||||
|
||||
$html_block =
|
||||
'<div class="table-outer">' .
|
||||
$html_block = '<div class="table-outer">' .
|
||||
'<table>' .
|
||||
'<caption>' . ($filter ?
|
||||
'<caption>' . (
|
||||
$filter ?
|
||||
sprintf(__('List of %s links matching the filter.'), $this->rs_count) :
|
||||
sprintf(__('List of links (%s)'), $this->rs_count)
|
||||
). '</caption>' .
|
||||
) . '</caption>' .
|
||||
'<thead>' .
|
||||
'<tr>' . implode(iterator_to_array($cols)) . '</tr>' .
|
||||
'</thead>' .
|
||||
@ -111,7 +110,7 @@ class adminlistCinecturlink2
|
||||
{
|
||||
$cols = [
|
||||
'check' => '<td class="nowrap minimal">' .
|
||||
form::checkbox(['entries[]'], $this->rs->link_id, ['checked' => $checked]) .
|
||||
form::checkbox(['entries[]'], $this->rs->link_id, ['checked' => $checked]) .
|
||||
'</td>',
|
||||
'title' => '<td class="nowrap" scope="row">' .
|
||||
'<a href="' . $this->core->adminurl->get(
|
||||
@ -157,6 +156,6 @@ class adminlistCinecturlink2
|
||||
$cols = new ArrayObject($cols);
|
||||
$this->userColumns('c2link', $cols);
|
||||
|
||||
return '<tr class="line">' . implode(iterator_to_array($cols)) . '</tr>' . "\n";
|
||||
return '<tr class="line">' . implode(iterator_to_array($cols)) . '</tr>' . "\n";
|
||||
}
|
||||
}
|
@ -10,7 +10,6 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
class sitemapsCinecturlink2
|
||||
{
|
||||
public static function sitemapsDefineParts($map_parts)
|
||||
@ -33,10 +32,10 @@ class sitemapsCinecturlink2
|
||||
$sitemaps->addEntry($base, $prio, $freq);
|
||||
|
||||
$core->blog->settings->addNamespace('cinecturlink2');
|
||||
$C2 = new cinecturlink2($core);
|
||||
$C2 = new cinecturlink2($core);
|
||||
$cats = $C2->getCategories();
|
||||
while ($cats->fetch()) {
|
||||
$sitemaps->addEntry($base . "/" . $core->blog->settings->cinecturlink2->cinecturlink2_public_caturl . '/' . urlencode($cats->cat_title), $prio, $freq);
|
||||
$sitemaps->addEntry($base . '/' . $core->blog->settings->cinecturlink2->cinecturlink2_public_caturl . '/' . urlencode($cats->cat_title), $prio, $freq);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
248
index.php
248
index.php
@ -10,31 +10,30 @@
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
if (!defined('DC_CONTEXT_ADMIN')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
dcPage::check('contentadmin');
|
||||
|
||||
$linkid = $_REQUEST['linkid'] ?? '';
|
||||
$linktitle = $_POST['linktitle'] ?? '';
|
||||
$linkdesc = $_POST['linkdesc'] ?? '';
|
||||
$linkid = $_REQUEST['linkid'] ?? '';
|
||||
$linktitle = $_POST['linktitle'] ?? '';
|
||||
$linkdesc = $_POST['linkdesc'] ?? '';
|
||||
$linkauthor = $_POST['linkauthor'] ?? '';
|
||||
$linkurl = $_POST['linkurl'] ?? '';
|
||||
$linkcat = $_POST['linkcat'] ?? null;
|
||||
$linklang = $_POST['linklang'] ?? $core->auth->getInfo('user_lang');
|
||||
$linkimage = $_POST['linkimage'] ?? '';
|
||||
$linknote = $_POST['linknote'] ?? '';
|
||||
$catid = $_REQUEST['catid'] ?? '';
|
||||
$cattitle = $_POST['cattitle'] ?? '';
|
||||
$catdesc = $_POST['catdesc'] ?? '';
|
||||
$redir = $_REQUEST['redir'] ?? '';
|
||||
$part = $_REQUEST['part'] ?? 'links';
|
||||
$entries = $_POST['entries'] ?? [];
|
||||
$headers = '';
|
||||
$linkurl = $_POST['linkurl'] ?? '';
|
||||
$linkcat = $_POST['linkcat'] ?? null;
|
||||
$linklang = $_POST['linklang'] ?? $core->auth->getInfo('user_lang');
|
||||
$linkimage = $_POST['linkimage'] ?? '';
|
||||
$linknote = $_POST['linknote'] ?? '';
|
||||
$catid = $_REQUEST['catid'] ?? '';
|
||||
$cattitle = $_POST['cattitle'] ?? '';
|
||||
$catdesc = $_POST['catdesc'] ?? '';
|
||||
$redir = $_REQUEST['redir'] ?? '';
|
||||
$part = $_REQUEST['part'] ?? 'links';
|
||||
$entries = $_POST['entries'] ?? [];
|
||||
$headers = '';
|
||||
$breadcrumb = [
|
||||
__('Plugins') => '',
|
||||
__('Plugins') => '',
|
||||
__('My cinecturlink') => $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'links'])
|
||||
];
|
||||
if (!in_array($part, ['links', 'link', 'cats', 'cat', 'dellinks', 'updlinksnote', 'updlinkscat'])) {
|
||||
@ -45,11 +44,11 @@ if (!is_array($entries)) {
|
||||
}
|
||||
|
||||
try {
|
||||
$C2 = new cinecturlink2($core);
|
||||
$categories = $C2->getCategories();
|
||||
$C2 = new cinecturlink2($core);
|
||||
$categories = $C2->getCategories();
|
||||
$categories_combo = ['-' => ''];
|
||||
while($categories->fetch()) {
|
||||
$cat_title = html::escapeHTML($categories->cat_title);
|
||||
while ($categories->fetch()) {
|
||||
$cat_title = html::escapeHTML($categories->cat_title);
|
||||
$categories_combo[$cat_title] = $categories->cat_id;
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
@ -87,10 +86,10 @@ if ($part == 'updlinksnote') {
|
||||
try {
|
||||
// update group of links note
|
||||
if (!empty($entries) && isset($_POST['newlinknote'])) {
|
||||
while($links->fetch()) {
|
||||
while ($links->fetch()) {
|
||||
if (in_array($links->link_id, $entries)) {
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur->link_note = (integer) $_POST['newlinknote'];
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur->link_note = (int) $_POST['newlinknote'];
|
||||
$C2->updLink($links->link_id, $cur);
|
||||
}
|
||||
}
|
||||
@ -113,10 +112,10 @@ if ($part == 'updlinkscat') {
|
||||
try {
|
||||
// update group of links category
|
||||
if (!empty($entries) && !empty($_POST['newcatid'])) {
|
||||
while($links->fetch()) {
|
||||
while ($links->fetch()) {
|
||||
if (in_array($links->link_id, $entries)) {
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur->cat_id = (integer) $_POST['newcatid'];
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur->cat_id = (int) $_POST['newcatid'];
|
||||
$C2->updLink($links->link_id, $cur);
|
||||
}
|
||||
}
|
||||
@ -137,35 +136,37 @@ if ($part == 'updlinkscat') {
|
||||
|
||||
if ($part == 'links') {
|
||||
$action_combo = [
|
||||
__('Delete') => 'dellinks',
|
||||
__('Delete') => 'dellinks',
|
||||
__('Change category') => 'updlinkscat',
|
||||
__('Change rating') => 'updlinksnote'
|
||||
__('Change rating') => 'updlinksnote'
|
||||
];
|
||||
|
||||
$c2link_filter = new adminGenericFilter($core, 'c2link');
|
||||
$c2link_filter->add('part', 'links');
|
||||
$c2link_filter->add(dcAdminFilters::getPageFilter());
|
||||
$c2link_filter->add(dcAdminFilters::getSelectFilter(
|
||||
'catid', __('Category:'), $categories_combo, 'cat_id'
|
||||
'catid',
|
||||
__('Category:'),
|
||||
$categories_combo,
|
||||
'cat_id'
|
||||
));
|
||||
|
||||
$params = $c2link_filter->params();
|
||||
$params['link_type'] = 'cinecturlink';
|
||||
$params = $c2link_filter->params();
|
||||
$params['link_type'] = 'cinecturlink';
|
||||
$params['no_content'] = true;
|
||||
|
||||
$links_list = null;
|
||||
|
||||
try {
|
||||
$links = $C2->getLinks($params);
|
||||
$links_counter = $C2->getLinks($params,true)->f(0);
|
||||
$links_list = new adminlistCinecturlink2($core, $links, $links_counter);
|
||||
$links = $C2->getLinks($params);
|
||||
$links_counter = $C2->getLinks($params, true)->f(0);
|
||||
$links_list = new adminlistCinecturlink2($core, $links, $links_counter);
|
||||
} catch (Exception $e) {
|
||||
$core->error->add($e->getMessage());
|
||||
}
|
||||
|
||||
$breadcrumb[__('My cinecturlink')] = '';
|
||||
$headers .=
|
||||
dcPage::jsVars(['dotclear.filter_reset_url' => $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'links'])]) .
|
||||
$headers .= dcPage::jsVars(['dotclear.filter_reset_url' => $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'links'])]) .
|
||||
dcPage::jsFilterControl($c2link_filter->show()) .
|
||||
dcPage::jsLoad(dcPage::getPF('cinecturlink2/js/c2links.js'));
|
||||
}
|
||||
@ -174,14 +175,15 @@ if ($part == 'link') {
|
||||
$langs_combo = l10n::getISOcodes(true);
|
||||
$notes_combo = range(0, 20);
|
||||
$media_combo = $tmp_media_combo = $dir = null;
|
||||
|
||||
try {
|
||||
$allowed_media = ['png', 'jpg', 'gif', 'bmp', 'jpeg'];
|
||||
$core->media = new dcMedia($core);
|
||||
$core->media = new dcMedia($core);
|
||||
$core->media->chdir($core->blog->settings->cinecturlink2->cinecturlink2_folder);
|
||||
$core->media->getDir();
|
||||
$dir =& $core->media->dir;
|
||||
$dir = & $core->media->dir;
|
||||
|
||||
foreach($dir['files'] as $file) {
|
||||
foreach ($dir['files'] as $file) {
|
||||
if (!in_array(files::getExtension($file->relname), $allowed_media)) {
|
||||
continue;
|
||||
}
|
||||
@ -197,7 +199,7 @@ if ($part == 'link') {
|
||||
if (!empty($_POST['save'])) {
|
||||
try {
|
||||
cinecturlink2::makePublicDir(
|
||||
DC_ROOT . '/' .$core->blog->settings->system->public_path,
|
||||
DC_ROOT . '/' . $core->blog->settings->system->public_path,
|
||||
$core->blog->settings->cinecturlink2->cinecturlink2_folder
|
||||
);
|
||||
if (empty($linktitle)) {
|
||||
@ -210,15 +212,15 @@ if ($part == 'link') {
|
||||
throw new Exception(__('You must provide a link to an image.'));
|
||||
}
|
||||
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur->link_title = $linktitle;
|
||||
$cur->link_desc = $linkdesc;
|
||||
$cur = $core->con->openCursor($C2->table);
|
||||
$cur->link_title = $linktitle;
|
||||
$cur->link_desc = $linkdesc;
|
||||
$cur->link_author = $linkauthor;
|
||||
$cur->link_url = $linkurl;
|
||||
$cur->cat_id = $linkcat == '' ? null : $linkcat;
|
||||
$cur->link_lang = $linklang;
|
||||
$cur->link_img = $linkimage;
|
||||
$cur->link_note = $linknote;
|
||||
$cur->link_url = $linkurl;
|
||||
$cur->cat_id = $linkcat == '' ? null : $linkcat;
|
||||
$cur->link_lang = $linklang;
|
||||
$cur->link_img = $linkimage;
|
||||
$cur->link_note = $linknote;
|
||||
|
||||
// create a link
|
||||
if (empty($linkid)) {
|
||||
@ -243,11 +245,12 @@ if ($part == 'link') {
|
||||
__('Link successfully updated.')
|
||||
);
|
||||
}
|
||||
$core->adminurl->redirect('admin.plugin.cinecturlink2',
|
||||
$core->adminurl->redirect(
|
||||
'admin.plugin.cinecturlink2',
|
||||
[
|
||||
'part' => 'link',
|
||||
'part' => 'link',
|
||||
'linkid' => $linkid,
|
||||
'redir' => $redir
|
||||
'redir' => $redir
|
||||
]
|
||||
);
|
||||
} catch (Exception $e) {
|
||||
@ -275,19 +278,18 @@ if ($part == 'link') {
|
||||
if (!empty($linkid)) {
|
||||
$link = $C2->getLinks(['link_id' => $linkid]);
|
||||
if (!$link->isEmpty()) {
|
||||
$linktitle = $link->link_title;
|
||||
$linkdesc = $link->link_desc;
|
||||
$linktitle = $link->link_title;
|
||||
$linkdesc = $link->link_desc;
|
||||
$linkauthor = $link->link_author;
|
||||
$linkurl = $link->link_url;
|
||||
$linkcat = $link->cat_id;
|
||||
$linklang = $link->link_lang;
|
||||
$linkimage = $link->link_img;
|
||||
$linknote = $link->link_note;
|
||||
$linkurl = $link->link_url;
|
||||
$linkcat = $link->cat_id;
|
||||
$linklang = $link->link_lang;
|
||||
$linkimage = $link->link_img;
|
||||
$linknote = $link->link_note;
|
||||
}
|
||||
}
|
||||
$breadcrumb[(empty($linkid) ? __('New link') : __('Edit link'))] = '';
|
||||
$headers .=
|
||||
dcPage::jsVars(['dotclear.c2_lang' => $core->auth->getInfo('user_lang')]) .
|
||||
$headers .= dcPage::jsVars(['dotclear.c2_lang' => $core->auth->getInfo('user_lang')]) .
|
||||
dcPage::jsLoad(dcPage::getPF('cinecturlink2/js/c2link.js'));
|
||||
}
|
||||
|
||||
@ -308,9 +310,9 @@ if ($part == 'cats') {
|
||||
$catorder = explode(',', $catorder);
|
||||
}
|
||||
$i = 0;
|
||||
foreach($catorder as $id) {
|
||||
foreach ($catorder as $id) {
|
||||
$i++;
|
||||
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||
$cur->cat_pos = $i;
|
||||
$C2->updCategory($id, $cur);
|
||||
}
|
||||
@ -329,7 +331,6 @@ if ($part == 'cats') {
|
||||
);
|
||||
$core->adminurl->redirect('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||
}
|
||||
|
||||
} catch (Exception $e) {
|
||||
$core->error->add($e->getMessage());
|
||||
}
|
||||
@ -338,8 +339,7 @@ if ($part == 'cats') {
|
||||
|
||||
$core->auth->user_prefs->addWorkspace('accessibility');
|
||||
if (!$core->auth->user_prefs->accessibility->nodragdrop) {
|
||||
$headers .=
|
||||
dcPage::jsLoad('js/jquery/jquery-ui.custom.js') .
|
||||
$headers .= dcPage::jsLoad('js/jquery/jquery-ui.custom.js') .
|
||||
dcPage::jsLoad('js/jquery/jquery.ui.touch-punch.js') .
|
||||
dcPage::jsLoad(dcPage::getPF('cinecturlink2/js/c2cats.js'));
|
||||
}
|
||||
@ -353,9 +353,9 @@ if ($part == 'cat') {
|
||||
if ($exists) {
|
||||
throw new Exception(__('Category with same name already exists.'));
|
||||
}
|
||||
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||
$cur->cat_title = $cattitle;
|
||||
$cur->cat_desc = $catdesc;
|
||||
$cur->cat_desc = $catdesc;
|
||||
|
||||
$catid = $C2->addCategory($cur);
|
||||
|
||||
@ -370,9 +370,9 @@ if ($part == 'cat') {
|
||||
if ($exists) {
|
||||
throw new Exception(__('Category with same name already exists.'));
|
||||
}
|
||||
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||
$cur->cat_title = $cattitle;
|
||||
$cur->cat_desc = $catdesc;
|
||||
$cur->cat_desc = $catdesc;
|
||||
|
||||
$C2->updCategory($catid, $cur);
|
||||
|
||||
@ -393,19 +393,19 @@ if ($part == 'cat') {
|
||||
} catch (Exception $e) {
|
||||
$core->error->add($e->getMessage());
|
||||
}
|
||||
$breadcrumb[__('Categories')] = $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||
$breadcrumb[__('Categories')] = $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||
$breadcrumb[(empty($catid) ? __('New category') : __('Edit category'))] = '';
|
||||
}
|
||||
|
||||
echo
|
||||
'<html><head><title>'.__('Cinecturlink 2').'</title>' .
|
||||
'<html><head><title>' . __('Cinecturlink 2') . '</title>' .
|
||||
$headers .
|
||||
'</head><body>'.
|
||||
'</head><body>' .
|
||||
dcPage::breadcrumb($breadcrumb) .
|
||||
dcPage::notices();
|
||||
|
||||
if (!empty($redir)) {
|
||||
echo '<p><a class="back" href="' . $redir . '">' . __('Back') .' </a></p>';
|
||||
echo '<p><a class="back" href="' . $redir . '">' . __('Back') . ' </a></p>';
|
||||
}
|
||||
if (!empty($title)) {
|
||||
echo '<h3>' . $title . '</h3>';
|
||||
@ -413,10 +413,10 @@ if (!empty($title)) {
|
||||
|
||||
if ($part == 'updlinksnote') {
|
||||
if ($links->isEmpty()) {
|
||||
echo '<p>'.__('There is no link').'</p>';
|
||||
echo '<p>' . __('There is no link') . '</p>';
|
||||
} else {
|
||||
echo '<h4>' . __('Links') . '</h4><ul>';
|
||||
while($links->fetch()) {
|
||||
while ($links->fetch()) {
|
||||
echo '<li><strong>' . $links->link_title . '</strong> ' . $links->link_note . '/20</li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
@ -425,16 +425,17 @@ if ($part == 'updlinksnote') {
|
||||
<form method="post" action="' . $core->adminurl->get('admin.plugin.cinecturlink2') . '">' .
|
||||
'<p><label for="newlinknote" class="ib">' . __('New rating:') . '</label> ' .
|
||||
form::number('newlinknote', [
|
||||
'min' => 0,
|
||||
'max' => 20,
|
||||
'default' => 10
|
||||
'min' => 0,
|
||||
'max' => 20,
|
||||
'default' => 10
|
||||
]) . '/20' . '</p>' .
|
||||
'<p>' .
|
||||
'<input type="submit" value="' . __('Save') . ' (s)" accesskey="s" name="save" /> ' .
|
||||
'<a id="post-cancel" href="' . ($redir ? $redir :
|
||||
'<a id="post-cancel" href="' . (
|
||||
$redir ? $redir :
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'links'])
|
||||
) . '" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> ';
|
||||
foreach($entries as $id) {
|
||||
foreach ($entries as $id) {
|
||||
echo form::hidden(['entries[]'], $id);
|
||||
}
|
||||
echo
|
||||
@ -447,10 +448,10 @@ if ($part == 'updlinksnote') {
|
||||
|
||||
if ($part == 'updlinkscat') {
|
||||
if ($links->isEmpty()) {
|
||||
echo '<p>'.__('There is no link').'</p>';
|
||||
echo '<p>' . __('There is no link') . '</p>';
|
||||
} else {
|
||||
echo '<h4>' . __('Links') . '</h4><ul>';
|
||||
while($links->fetch()) {
|
||||
while ($links->fetch()) {
|
||||
echo '<li><strong>' . $links->link_title . '</strong> ' . $links->link_note . '/20</li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
@ -460,10 +461,11 @@ if ($part == 'updlinkscat') {
|
||||
'<p><label for="newcatid" class="ib">' . __('New category:') . '</label> ' .
|
||||
form::combo('newcatid', $categories_combo, $catid) . '</p>' .
|
||||
'<input type="submit" value="' . __('Save') . ' (s)" accesskey="s" name="save" /> ' .
|
||||
'<a id="post-cancel" href="' . ($redir ? $redir :
|
||||
'<a id="post-cancel" href="' . (
|
||||
$redir ? $redir :
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'links'])
|
||||
) . '" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> ';
|
||||
foreach($entries as $id) {
|
||||
foreach ($entries as $id) {
|
||||
echo form::hidden(['entries[]'], $id);
|
||||
}
|
||||
echo
|
||||
@ -474,29 +476,32 @@ if ($part == 'updlinkscat') {
|
||||
}
|
||||
}
|
||||
|
||||
if ($part == "links") {
|
||||
if ($part == 'links') {
|
||||
$links_redir = $core->adminurl->get('admin.plugin.cinecturlink2', $c2link_filter->values());
|
||||
|
||||
echo
|
||||
'<p>' .
|
||||
'<a class="button" href="' .
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats', 'redir' => $links_redir]) .
|
||||
'">' . __('Edit categories') .' </a>' .
|
||||
'">' . __('Edit categories') . ' </a>' .
|
||||
'</p>' .
|
||||
'<p class="top-add"><a class="button add" href="' .
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'link', 'redir' => $links_redir]) .
|
||||
'">' . __('New Link') .'</a> <a class="button add" href="' .
|
||||
'">' . __('New Link') . '</a> <a class="button add" href="' .
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cat', 'redir' => $links_redir]) .
|
||||
'">' . __('New Category') .' </a></p>';
|
||||
'">' . __('New Category') . ' </a></p>';
|
||||
|
||||
if ($links->isEmpty() && !$c2link_filter->show()) {
|
||||
echo '<p>'.__('There is no link').'</p>';
|
||||
echo '<p>' . __('There is no link') . '</p>';
|
||||
} else {
|
||||
$c2link_filter->display('admin.plugin.cinecturlink2',
|
||||
$c2link_filter->display(
|
||||
'admin.plugin.cinecturlink2',
|
||||
form::hidden('p', 'cinecturlink2') . form::hidden('part', 'links')
|
||||
);
|
||||
|
||||
$links_list->display($c2link_filter->page, $c2link_filter->nb,
|
||||
$links_list->display(
|
||||
$c2link_filter->page,
|
||||
$c2link_filter->nb,
|
||||
'<form action="' . $core->adminurl->get('admin.plugin.cinecturlink2') . '" method="post" id="form-entries">' .
|
||||
|
||||
'%s' .
|
||||
@ -518,8 +523,7 @@ if ($part == "links") {
|
||||
}
|
||||
}
|
||||
|
||||
if ($part == "link") {
|
||||
|
||||
if ($part == 'link') {
|
||||
echo '
|
||||
<form id="newlinkform" method="post" action="' . $core->adminurl->get('admin.plugin.cinecturlink2') . '">
|
||||
|
||||
@ -529,18 +533,18 @@ if ($part == "link") {
|
||||
form::field('linktitle', 60, 255, html::escapeHTML($linktitle), 'maximal') .
|
||||
'</label></p>
|
||||
<p><label for="linkdesc">' . __('Description:') . ' ' .
|
||||
form::field('linkdesc', 60, 255, html::escapeHTML($linkdesc), 'maximal') .
|
||||
form::field('linkdesc', 60, 255, html::escapeHTML($linkdesc), 'maximal') .
|
||||
'</label></p>
|
||||
<p><label for="linkauthor">' . __('Author:') . ' ' .
|
||||
form::field('linkauthor', 60, 255, html::escapeHTML($linkauthor), 'maximal') .
|
||||
form::field('linkauthor', 60, 255, html::escapeHTML($linkauthor), 'maximal') .
|
||||
'</label></p>
|
||||
<p><label for="linkurl">' . __('Details URL:') . ' ' .
|
||||
form::field('linkurl', 60, 255, html::escapeHTML($linkurl), 'maximal') . '</label>' .
|
||||
form::field('linkurl', 60, 255, html::escapeHTML($linkurl), 'maximal') . '</label>' .
|
||||
'<a class="modal hidden-if-no-js" href="http://google.com" id="newlinksearch">' .
|
||||
__('Search with Google') . '</a>' .
|
||||
'</p>
|
||||
<p><label for="linkimage">' . __('Image URL:') . ' ' .
|
||||
form::field('linkimage', 60, 255, html::escapeHTML($linkimage), 'maximal') . '</label>' .
|
||||
form::field('linkimage', 60, 255, html::escapeHTML($linkimage), 'maximal') . '</label>' .
|
||||
'<a class="modal hidden-if-no-js"" href="http://amazon.com" id="newimagesearch">' .
|
||||
__('Search with Amazon') . '</a>' .
|
||||
'</p>';
|
||||
@ -570,9 +574,9 @@ if ($part == "link") {
|
||||
'</p>
|
||||
<p><label for="linknote">' . __('Rating:') . '</label> ' .
|
||||
form::number('linknote', [
|
||||
'min' => 0,
|
||||
'max' => 20,
|
||||
'default' => $linknote
|
||||
'min' => 0,
|
||||
'max' => 20,
|
||||
'default' => $linknote
|
||||
]) . '/20' . '</p>
|
||||
</div></div>
|
||||
|
||||
@ -580,7 +584,7 @@ if ($part == "link") {
|
||||
'<input type="submit" value="' . __('Save') . ' (s)" accesskey="s" name="save" /> ' .
|
||||
'<a id="post-cancel" href="' .
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'links']) .
|
||||
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> '.
|
||||
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> ' .
|
||||
'<input type="submit" class="delete" value="' . __('Delete') . '" name="delete" />' .
|
||||
form::hidden('linkid', $linkid) .
|
||||
form::hidden('part', 'link') .
|
||||
@ -590,41 +594,40 @@ if ($part == "link") {
|
||||
</form>';
|
||||
}
|
||||
|
||||
if ($part == "cats") {
|
||||
if ($part == 'cats') {
|
||||
echo
|
||||
'<p class="top-add"><a class="button add" href="' .
|
||||
$core->adminurl->get(
|
||||
'admin.plugin.cinecturlink2',
|
||||
[
|
||||
'part' => 'cat',
|
||||
'part' => 'cat',
|
||||
'redir' => $core->adminurl->get(
|
||||
'admin.plugin.cinecturlink2',
|
||||
[
|
||||
'part' => 'cats',
|
||||
'part' => 'cats',
|
||||
'redir' => $redir,
|
||||
]
|
||||
)
|
||||
]
|
||||
) .
|
||||
'">' . __('New Category') .' </a></p>';
|
||||
'">' . __('New Category') . ' </a></p>';
|
||||
|
||||
if ($categories->isEmpty()) {
|
||||
echo '<p>'.__('There is no category').'</p>';
|
||||
}
|
||||
else {
|
||||
echo '<p>' . __('There is no category') . '</p>';
|
||||
} else {
|
||||
echo '
|
||||
<form id="c2items" method="post" action="' . $core->adminurl->get('admin.plugin.cinecturlink2') . '">
|
||||
<div class="table-outer">
|
||||
<table class="dragable">
|
||||
<caption>' . __('Categories list') . '</caption>
|
||||
<thead><tr>
|
||||
<th colspan="3" scope="col">'.__('name').'</th>
|
||||
<th scope="col">'.__('description').'</th>
|
||||
<th colspan="3" scope="col">' . __('name') . '</th>
|
||||
<th scope="col">' . __('description') . '</th>
|
||||
</tr></thead>
|
||||
<tbody id="c2itemslist">';
|
||||
|
||||
$i = 0;
|
||||
while($categories->fetch()) {
|
||||
while ($categories->fetch()) {
|
||||
$id = $categories->cat_id;
|
||||
|
||||
echo
|
||||
@ -633,22 +636,22 @@ if ($part == "cats") {
|
||||
form::number(['order[' . $id . ']'], [
|
||||
'min' => 1,
|
||||
'max' => $categories->count(),
|
||||
'default' => $i +1,
|
||||
'default' => $i + 1,
|
||||
'class' => 'position',
|
||||
'extra_html' => 'title="' . sprintf(__('position of %s'), html::escapeHTML($categories->cat_title)) . '"'
|
||||
]) .
|
||||
form::hidden(['dynorder[]', 'dynorder-' . $i], $id) . '</td>
|
||||
<td class="minimal">' . form::checkbox(['items_selected[]', 'ims-' . $i], $id) . '</td>
|
||||
<td class="nowrap"><a title="' . __('Edit') .'" href="' .
|
||||
<td class="nowrap"><a title="' . __('Edit') . '" href="' .
|
||||
$core->adminurl->get(
|
||||
'admin.plugin.cinecturlink2',
|
||||
[
|
||||
'part' => 'cat',
|
||||
'part' => 'cat',
|
||||
'catid' => $id,
|
||||
'redir' => $core->adminurl->get(
|
||||
'admin.plugin.cinecturlink2',
|
||||
[
|
||||
'part' => 'cats',
|
||||
'part' => 'cats',
|
||||
'redir' => $redir
|
||||
]
|
||||
)
|
||||
@ -664,12 +667,12 @@ if ($part == "cats") {
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p class="form-note">'.__('Check to delete').'</p>
|
||||
<p class="form-note">' . __('Check to delete') . '</p>
|
||||
<p class="border-top">' .
|
||||
'<input type="submit" value="' . __('Save order') . ' (s)" accesskey="s" name="save" /> ' .
|
||||
'<a id="post-cancel" href="' .
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']) .
|
||||
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> '.
|
||||
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> ' .
|
||||
'<input type="submit" class="delete" value="' . __('Delete selection') . '" name="delete" />' .
|
||||
form::hidden('im_order', '') .
|
||||
form::hidden('part', 'cats') .
|
||||
@ -683,19 +686,20 @@ if ($part == 'cat') {
|
||||
$category = $C2->getCategories(['cat_id' => $catid]);
|
||||
if (!$category->isEmpty()) {
|
||||
$cattitle = $category->cat_title;
|
||||
$catdesc = $category->cat_desc;
|
||||
$catdesc = $category->cat_desc;
|
||||
}
|
||||
}
|
||||
|
||||
if ($catid) {
|
||||
$links = $C2->getLinks(['cat_id' => $catid], true)->f(0);
|
||||
echo '<p class="info">' . (empty($links) ?
|
||||
echo '<p class="info">' . (
|
||||
empty($links) ?
|
||||
__('No link uses this category.') :
|
||||
sprintf(__('A link uses this category.', '%s links use this category.', $links), $links)
|
||||
) . '</p>';
|
||||
}
|
||||
echo '
|
||||
<form method="post" action="'. $core->adminurl->get('admin.plugin.cinecturlink2') .'">
|
||||
<form method="post" action="' . $core->adminurl->get('admin.plugin.cinecturlink2') . '">
|
||||
<p><label for="cattitle">' . __('Title:') . ' ' .
|
||||
form::field('cattitle', 60, 64, $cattitle, 'maximal') .
|
||||
'</label></p>
|
||||
@ -706,7 +710,7 @@ if ($part == 'cat') {
|
||||
'<input type="submit" value="' . __('Save') . ' (s)" accesskey="s" name="save" /> ' .
|
||||
'<a id="post-cancel" href="' .
|
||||
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']) .
|
||||
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> '.
|
||||
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> ' .
|
||||
(!empty($catid) ? ' <input type="submit" class="delete" value="' . __('Delete') . '" name="delete" />' : '') .
|
||||
form::hidden('catid', $catid) .
|
||||
form::hidden('part', 'cat') .
|
||||
|
Loading…
Reference in New Issue
Block a user