fix config: cleanup, license
This commit is contained in:
parent
956d48b4f4
commit
e510c444d7
104
_config.php
104
_config.php
@ -1,26 +1,23 @@
|
||||
<?php
|
||||
# -- BEGIN LICENSE BLOCK ----------------------------------
|
||||
#
|
||||
# This file is part of cinecturlink2, a plugin for Dotclear 2.
|
||||
#
|
||||
# Copyright (c) 2009-2013 Jean-Christian Denis and contributors
|
||||
# contact@jcdenis.fr http://jcd.lv
|
||||
#
|
||||
# Licensed under the GPL version 2.0 license.
|
||||
# A copy of this license is available in LICENSE file or at
|
||||
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
||||
#
|
||||
# -- END LICENSE BLOCK ------------------------------------
|
||||
/**
|
||||
* @brief cinecturlink2, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @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'];
|
||||
|
||||
# -- Get settings --
|
||||
$core->blog->settings->addNamespace('cinecturlink2');
|
||||
$s = $core->blog->settings->cinecturlink2;
|
||||
$cinecturlink2_active = (boolean) $s->cinecturlink2_active;
|
||||
@ -35,9 +32,7 @@ if ($cinecturlink2_public_nbrpp < 1) {
|
||||
$cinecturlink2_public_nbrpp = 10;
|
||||
}
|
||||
|
||||
# -- Set settings --
|
||||
if (!empty($_POST['save'])) {
|
||||
|
||||
try {
|
||||
$cinecturlink2_active = !empty($_POST['cinecturlink2_active']);
|
||||
$cinecturlink2_widthmax = abs((integer) $_POST['cinecturlink2_widthmax']);
|
||||
@ -50,16 +45,14 @@ if (!empty($_POST['save'])) {
|
||||
if ($cinecturlink2_public_nbrpp < 1) {
|
||||
$cinecturlink2_public_nbrpp = 10;
|
||||
}
|
||||
|
||||
if (empty($cinecturlink2_folder)) {
|
||||
throw new Exception(__('You must provide a specific folder for images.'));
|
||||
}
|
||||
cinecturlink2::test_folder(
|
||||
DC_ROOT.'/'.$core->blog->settings->system->public_path,
|
||||
DC_ROOT . '/' . $core->blog->settings->system->public_path,
|
||||
$cinecturlink2_folder,
|
||||
true
|
||||
);
|
||||
|
||||
$s->put('cinecturlink2_active', $cinecturlink2_active);
|
||||
$s->put('cinecturlink2_public_active', $cinecturlink2_public_active);
|
||||
$s->put('cinecturlink2_public_title', $cinecturlink2_public_title);
|
||||
@ -72,73 +65,70 @@ if (!empty($_POST['save'])) {
|
||||
dcPage::addSuccessNotice(
|
||||
__('Configuration has been successfully updated.')
|
||||
);
|
||||
http::redirect(
|
||||
$list->getURL('module=cinecturlink2&conf=1&redir='.
|
||||
$list->getRedir())
|
||||
$core->adminurl->redirect(
|
||||
'admin.plugins',
|
||||
['module' => 'cinecturlink2', 'conf' => 1, 'redir' => $list->getRedir()]
|
||||
);
|
||||
}
|
||||
catch (Exception $e) {
|
||||
} catch (Exception $e) {
|
||||
$core->error->add($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
# -- Display form --
|
||||
echo '
|
||||
|
||||
<div class="fieldset">
|
||||
<h4>'.__('General').'</h4>
|
||||
<h4>' . __('General') . '</h4>
|
||||
|
||||
<p><label class="classic" for="cinecturlink2_active">'.
|
||||
form::checkbox('cinecturlink2_active', 1, $cinecturlink2_active).
|
||||
__('Enable extension').'</label></p>
|
||||
<p><label class="classic" for="cinecturlink2_active">' .
|
||||
form::checkbox('cinecturlink2_active', 1, $cinecturlink2_active) .
|
||||
__('Enable extension') . '</label></p>
|
||||
|
||||
<p><label for="cinecturlink2_widthmax">'.__('Maximum width of images (in pixel):').' '.
|
||||
form::field('cinecturlink2_widthmax', 10, 4, $cinecturlink2_widthmax, 'maximal').'</label></p>
|
||||
<p><label for="cinecturlink2_widthmax">' . __('Maximum width of images (in pixel):') . ' ' .
|
||||
form::field('cinecturlink2_widthmax', 10, 4, $cinecturlink2_widthmax, 'maximal') . '</label></p>
|
||||
|
||||
<p><label for="cinecturlink2_folder">'.__('Public folder of images (under public folder of blog):').' '.
|
||||
form::field('cinecturlink2_folder', 60, 64, $cinecturlink2_folder, 'maximal').'</label></p>
|
||||
<p><label for="cinecturlink2_folder">'.__('Public folder of images (under public folder of blog):') . ' ' .
|
||||
form::field('cinecturlink2_folder', 60, 64, $cinecturlink2_folder, 'maximal') . '</label></p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="fieldset">
|
||||
<h4>'.__('Widget').'</h4>
|
||||
<h4>' . __('Widget') . '</h4>
|
||||
|
||||
<p><label class="classic" for="cinecturlink2_triggeronrandom">'.
|
||||
form::checkbox('cinecturlink2_triggeronrandom', 1, $cinecturlink2_triggeronrandom).
|
||||
__('Update cache when use "Random" or "Number of view" order on widget (Need reload of widgets on change)').'</label></p>
|
||||
<p class="form-note">'.__('This increases the random effect, but updates the cache of the blog whenever the widget is displayed, which reduces the perfomances of your blog.').'</p>
|
||||
<p><label class="classic" for="cinecturlink2_triggeronrandom">' .
|
||||
form::checkbox('cinecturlink2_triggeronrandom', 1, $cinecturlink2_triggeronrandom) .
|
||||
__('Update cache when use "Random" or "Number of view" order on widget (Need reload of widgets on change)') . '</label></p>
|
||||
<p class="form-note">' . __('This increases the random effect, but updates the cache of the blog whenever the widget is displayed, which reduces the perfomances of your blog.') . '</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="fieldset">
|
||||
<h4>'.__('Public page').'</h4>
|
||||
<h4>' . __('Public page') . '</h4>
|
||||
|
||||
<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><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><label for="cinecturlink2_public_title">'.__('Title of the public page:').' '.
|
||||
form::field('cinecturlink2_public_title', 60, 255, $cinecturlink2_public_title, 'maximal').'</label></p>
|
||||
<p><label for="cinecturlink2_public_title">' . __('Title of the public page:') . ' ' .
|
||||
form::field('cinecturlink2_public_title', 60, 255, $cinecturlink2_public_title, 'maximal') . '</label></p>
|
||||
|
||||
<p><label for="cinecturlink2_public_description">'.__('Description of the public page:').' '.
|
||||
form::field('cinecturlink2_public_description', 60, 255, $cinecturlink2_public_description, 'maximal').'</label></p>
|
||||
<p><label for="cinecturlink2_public_description">' . __('Description of the public page:') . ' ' .
|
||||
form::field('cinecturlink2_public_description', 60, 255, $cinecturlink2_public_description, 'maximal') . '</label></p>
|
||||
|
||||
<p><label for="cinecturlink2_public_nbrpp">'.__('Limit number of entries per page on pulic page to:').' '.
|
||||
form::field('cinecturlink2_public_nbrpp', 5, 10, $cinecturlink2_public_nbrpp, 'maximal').'</label></p>
|
||||
<p><label for="cinecturlink2_public_nbrpp">' . __('Limit number of entries per page on pulic page to:') . ' ' .
|
||||
form::field('cinecturlink2_public_nbrpp', 5, 10, $cinecturlink2_public_nbrpp, 'maximal') . '</label></p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="fieldset">
|
||||
<h4>'.__('Informations').'</h4>
|
||||
<h4>' . __('Informations') . '</h4>
|
||||
|
||||
<ul>
|
||||
<li>'.__('Once the extension has been configured and your links have been created, you can place one of the cinecturlink widgets in the sidebar.').'</li>
|
||||
<li>'.sprintf(__('In order to open links in new window you can use plugin %s.'),'<a href="http://plugins.dotaddict.org/dc2/details/externalLinks">External Links</a>').'</li>
|
||||
<li>'.sprintf(__('In order to change URL of public page you can use plugin %s.'),'<a href="http://lab.dotclear.org/wiki/plugin/myUrlHandlers">My URL handlers</a>').'</li>
|
||||
<li>'.sprintf(__('You can add public pages of cinecturlink to the plugin %s.'),'<a href="http://plugins.dotaddict.org/dc2/details/sitemaps">sitemaps</a>').'</li>
|
||||
<li>'.sprintf(__('The plugin Cinecturlink2 is compatible with plugin %s.'),'<a href="http://plugins.dotaddict.org/dc2/details/rateIt">Rate it</a>').'</li>
|
||||
<li>'.sprintf(__('The plugin Cinecturlink2 is compatible with plugin %s.'),'<a href="http://plugins.dotaddict.org/dc2/details/activityReport">Activity report</a>').'</li>
|
||||
<li>' . __('Once the extension has been configured and your links have been created, you can place one of the cinecturlink widgets in the sidebar.') . '</li>
|
||||
<li>' . sprintf(__('In order to open links in new window you can use plugin %s.'), '<a href="http://plugins.dotaddict.org/dc2/details/externalLinks">External Links</a>') . '</li>
|
||||
<li>' . sprintf(__('In order to change URL of public page you can use plugin %s.'), '<a href="http://lab.dotclear.org/wiki/plugin/myUrlHandlers">My URL handlers</a>') . '</li>
|
||||
<li>' . sprintf(__('You can add public pages of cinecturlink to the plugin %s.'), '<a href="http://plugins.dotaddict.org/dc2/details/sitemaps">sitemaps</a>') . '</li>
|
||||
<li>' . sprintf(__('The plugin Cinecturlink2 is compatible with plugin %s.'), '<a href="http://plugins.dotaddict.org/dc2/details/rateIt">Rate it</a>') . '</li>
|
||||
<li>' . sprintf(__('The plugin Cinecturlink2 is compatible with plugin %s.'), '<a href="http://plugins.dotaddict.org/dc2/details/activityReport">Activity report</a>') . '</li>
|
||||
</ul>
|
||||
|
||||
</div>';
|
Loading…
Reference in New Issue
Block a user