rewrite admin page. first part. categories ok
This commit is contained in:
parent
0f17585cad
commit
b42aadbbb9
737
index.php
737
index.php
@ -12,667 +12,254 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('DC_CONTEXT_ADMIN')) {
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
dcPage::check('contentadmin');
|
dcPage::check('contentadmin');
|
||||||
|
|
||||||
# Class
|
|
||||||
$C2 = new cinecturlink2($core);
|
$C2 = new cinecturlink2($core);
|
||||||
require dirname(__FILE__).'/inc/lib.cinecturlink2.list.php';
|
|
||||||
|
|
||||||
# Queries
|
$catid = $_REQUEST['catid'] ?? '';
|
||||||
$upd_link_id = isset($_REQUEST['link_id']) ? $_REQUEST['link_id'] : null;
|
$cattitle = $_POST['cattitle'] ?? '';
|
||||||
$new_title = isset($_POST['new_title']) ? $_POST['new_title'] : '';
|
$catdesc = $_POST['catdesc'] ?? '';
|
||||||
$new_desc = isset($_POST['new_desc']) ? $_POST['new_desc'] : '';
|
$part = $_REQUEST['part'] ?? '';
|
||||||
$new_author = isset($_POST['new_author']) ? $_POST['new_author'] : '';
|
if (!in_array($part, ['links', 'link', 'cats', 'cat'])) {
|
||||||
$new_url = isset($_POST['new_url']) ? $_POST['new_url'] : '';
|
$part = 'links';
|
||||||
$new_category = isset($_POST['new_category']) ? $_POST['new_category'] : '';
|
}
|
||||||
$new_lang = isset($_POST['new_lang']) ? $_POST['new_lang'] : $core->auth->getInfo('user_lang');
|
$headers = '';
|
||||||
$new_image = isset($_POST['new_image']) ? $_POST['new_image'] : '';
|
|
||||||
$new_note = isset($_POST['new_note']) ? $_POST['new_note'] : 10;
|
|
||||||
$new_cattitle = isset($_POST['new_cattitle']) ? $_POST['new_cattitle'] : '';
|
|
||||||
$new_catdesc = isset($_POST['new_catdesc']) ? $_POST['new_catdesc'] : '';
|
|
||||||
$action = isset($_POST['action']) ? $_POST['action'] : '';
|
|
||||||
|
|
||||||
# Actions
|
$categories = $C2->getCategories();
|
||||||
try {
|
|
||||||
|
|
||||||
# Update categories
|
$breadcrumb = [
|
||||||
if ($action == 'update_categories') {
|
html::escapeHTML($core->blog->name) => '',
|
||||||
|
__('My cinecturlink') => $part != 'links' ? $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'links']) : ''
|
||||||
|
];
|
||||||
|
|
||||||
# Reorder categories
|
if ($part == 'link') {
|
||||||
if (empty($_POST['cats_order'])
|
$breadcrumb[__('Link')] = '';
|
||||||
&& !empty($_POST['catpos'])
|
}
|
||||||
) {
|
|
||||||
$order = $_POST['catpos'];
|
if ($part == 'cats') {
|
||||||
asort($order);
|
$breadcrumb[__('Categories')] = '';
|
||||||
$order = array_keys($order);
|
|
||||||
}
|
$core->auth->user_prefs->addWorkspace('accessibility');
|
||||||
elseif (!empty($_POST['cats_order'])) {
|
if (!$core->auth->user_prefs->accessibility->nodragdrop) {
|
||||||
$order = explode(',', $_POST['cats_order']);
|
$headers .=
|
||||||
|
dcPage::jsLoad('js/jquery/jquery-ui.custom.js') .
|
||||||
|
dcPage::jsLoad('js/jquery/jquery.ui.touch-punch.js') .
|
||||||
|
dcPage::jsLoad(dcPage::getPF('cinecturlink2/js/cinecturlink2.js'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($order)) {
|
try {
|
||||||
|
// reorder categories
|
||||||
foreach ($order as $pos => $id) {
|
if (!empty($_POST['save'])) {
|
||||||
|
$catorder = [];
|
||||||
$pos = ((integer) $pos)+1;
|
if (empty($_POST['im_order']) && !empty($_POST['order'])) {
|
||||||
if (empty($pos) || empty($id)) {
|
$catorder = $_POST['order'];
|
||||||
continue;
|
asort($catorder);
|
||||||
|
$catorder = array_keys($catorder);
|
||||||
|
} elseif (!empty($_POST['im_order'])) {
|
||||||
|
$catorder = $_POST['im_order'];
|
||||||
|
if (substr($catorder, -1) == ',') {
|
||||||
|
$catorder = substr($catorder, 0, strlen($catorder) - 1);
|
||||||
}
|
}
|
||||||
|
$catorder = explode(',', $catorder);
|
||||||
$cur = $core->con->openCursor($C2->table.'_cat');
|
}
|
||||||
$cur->cat_pos = $pos;
|
$i = 0;
|
||||||
|
foreach($catorder as $id) {
|
||||||
|
$i++;
|
||||||
|
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||||
|
$cur->cat_pos = $i;
|
||||||
$C2->updCategory($id, $cur);
|
$C2->updCategory($id, $cur);
|
||||||
}
|
}
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
dcPage::addSuccessNotice(
|
||||||
__('Categories successfully reordered.')
|
__('Categories successfully reordered.')
|
||||||
);
|
);
|
||||||
|
$core->adminurl->redirect('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||||
}
|
}
|
||||||
|
// delete categories
|
||||||
# Delete categories
|
if (!empty($_POST['delete']) && !empty($_POST['items_selected'])) {
|
||||||
if (!empty($_POST['delcat'])) {
|
foreach ($_POST['items_selected'] as $id) {
|
||||||
|
$C2->delCategory($id);
|
||||||
foreach($_POST['delcat'] as $cat_id) {
|
|
||||||
$C2->delCategory($cat_id);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
dcPage::addSuccessNotice(
|
||||||
__('Categories successfully deleted.')
|
__('Category successfully deleted.')
|
||||||
);
|
);
|
||||||
|
$core->adminurl->redirect('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||||
}
|
}
|
||||||
|
|
||||||
http::redirect(empty($_POST['redir']) ?
|
} catch (Exception $e) {
|
||||||
$p_url.'#cats' : $_POST['redir']
|
$core->error->add($e->getMessage());
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# Create new category
|
if ($part == 'cat') {
|
||||||
if ($action == 'create_category') {
|
$breadcrumb[__('Categories')] = $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||||
|
$breadcrumb[__('Category')] = '';
|
||||||
|
|
||||||
if (empty($new_cattitle)) {
|
try {
|
||||||
throw new Exception(__('You must provide a title.'));
|
// create category
|
||||||
}
|
if (!empty($_POST['save']) && empty($catid) && !empty($cattitle) && !empty($catdesc)) {
|
||||||
|
$exists = $C2->getCategories(['cat_title' => $cattitle], true)->f(0);
|
||||||
$exists = $C2->getCategories(array('cat_title' => $new_cattitle), true)->f(0);
|
|
||||||
if ($exists) {
|
if ($exists) {
|
||||||
throw new Exception(__('Category with same name already exists.'));
|
throw new Exception(__('Category with same name already exists.'));
|
||||||
}
|
}
|
||||||
|
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||||
|
$cur->cat_title = $cattitle;
|
||||||
|
$cur->cat_desc = $catdesc;
|
||||||
|
|
||||||
$cur = $core->con->openCursor($C2->table.'_cat');
|
$catid = $C2->addCategory($cur);
|
||||||
$cur->cat_title = $new_cattitle;
|
|
||||||
$cur->cat_desc = $new_catdesc;
|
|
||||||
|
|
||||||
$C2->addCategory($cur);
|
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
dcPage::addSuccessNotice(
|
||||||
__('Category successfully created.')
|
__('Category successfully created.')
|
||||||
);
|
);
|
||||||
http::redirect(empty($_POST['redir']) ?
|
$core->adminurl->redirect('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||||
$p_url.'#cats' : $_POST['redir']
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
// update category
|
||||||
# Delete links
|
if (!empty($_POST['save']) && !empty($catid) && !empty($cattitle) && !empty($catdesc)) {
|
||||||
if (!empty($_POST['links']) && $action == 'delete_links') {
|
$exists = $C2->getCategories(['cat_title' => $cattitle, 'exclude_cat_id' => $catid], true)->f(0);
|
||||||
|
|
||||||
foreach($_POST['links'] as $link_id) {
|
|
||||||
$C2->delLink($link_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
|
||||||
__('Links successfully deleted.')
|
|
||||||
);
|
|
||||||
http::redirect(empty($_POST['redir']) ?
|
|
||||||
$p_url.'#links' : $_POST['redir']
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
# Move to right tab
|
|
||||||
if (!empty($_POST['links']) && $action == 'moveto_change_links_category') {
|
|
||||||
// Nothing to do: show links action page
|
|
||||||
}
|
|
||||||
|
|
||||||
# Update category for a group of links
|
|
||||||
if (!empty($_POST['links']) && $action == 'change_links_category') {
|
|
||||||
|
|
||||||
foreach($_POST['links'] as $link_id) {
|
|
||||||
$cur = $core->con->openCursor($C2->table);
|
|
||||||
$cur->cat_id = abs((integer) $_POST['upd_category']);
|
|
||||||
$C2->updLink($link_id,$cur);
|
|
||||||
}
|
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
|
||||||
__('Links successfully updated.')
|
|
||||||
);
|
|
||||||
http::redirect(empty($_POST['redir']) ?
|
|
||||||
$p_url.'#links' : $_POST['redir']
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
# Move to right tab
|
|
||||||
if (!empty($_POST['links']) && $_POST['action'] == 'moveto_change_links_note') {
|
|
||||||
// Nothing to do: show links action page
|
|
||||||
}
|
|
||||||
|
|
||||||
# Update note for a group of links
|
|
||||||
if (!empty($_POST['links']) && $action == 'change_links_note') {
|
|
||||||
|
|
||||||
foreach($_POST['links'] as $link_id) {
|
|
||||||
$cur = $core->con->openCursor($C2->table);
|
|
||||||
$cur->link_note = abs((integer) $_POST['upd_note']);
|
|
||||||
$C2->updLink($link_id,$cur);
|
|
||||||
}
|
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
|
||||||
__('Links successfully updated.')
|
|
||||||
);
|
|
||||||
http::redirect(empty($_POST['redir']) ?
|
|
||||||
$p_url.'#links' : $_POST['redir']
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
# Create or update link
|
|
||||||
if (!empty($_POST['newlink'])) {
|
|
||||||
|
|
||||||
cinecturlink2::test_folder(
|
|
||||||
DC_ROOT.'/'.$core->blog->settings->system->public_path,
|
|
||||||
$core->blog->settings->cinecturlink2->cinecturlink2_folder
|
|
||||||
);
|
|
||||||
|
|
||||||
if (empty($new_title)) {
|
|
||||||
throw new Exception(__('You must provide a title.'));
|
|
||||||
}
|
|
||||||
if (empty($new_author)) {
|
|
||||||
throw new Exception(__('You must provide an author.'));
|
|
||||||
}
|
|
||||||
if (!preg_match('/http:\/\/.+/',$new_image)) {
|
|
||||||
throw new Exception(__('You must provide a link to an image.'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$cur = $core->con->openCursor($C2->table);
|
|
||||||
$cur->link_title = $new_title;
|
|
||||||
$cur->link_desc = $new_desc;
|
|
||||||
$cur->link_author = $new_author;
|
|
||||||
$cur->link_url = $new_url;
|
|
||||||
$cur->cat_id = $new_category == '' ? null : $new_category;
|
|
||||||
$cur->link_lang = $new_lang;
|
|
||||||
$cur->link_img = $new_image;
|
|
||||||
$cur->link_note = $new_note;
|
|
||||||
|
|
||||||
# Create link
|
|
||||||
if (empty($upd_link_id)) {
|
|
||||||
|
|
||||||
$exists = $C2->getLinks(array('link_title'=>$new_title),true)->f(0);
|
|
||||||
if ($exists) {
|
if ($exists) {
|
||||||
throw new Exception(__('Link with same name already exists.'));
|
throw new Exception(__('Category with same name already exists.'));
|
||||||
}
|
}
|
||||||
|
$cur = $core->con->openCursor($C2->table . '_cat');
|
||||||
|
$cur->cat_title = $cattitle;
|
||||||
|
$cur->cat_desc = $catdesc;
|
||||||
|
|
||||||
$C2->addLink($cur);
|
$C2->updCategory($catid, $cur);
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
dcPage::addSuccessNotice(
|
||||||
__('Link successfully created.')
|
__('Category successfully updated.')
|
||||||
);
|
);
|
||||||
|
$core->adminurl->redirect('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||||
}
|
}
|
||||||
|
// delete category
|
||||||
# Update link
|
if (!empty($_POST['delete']) && !empty($catid)) {
|
||||||
else {
|
$C2->delCategory($catid);
|
||||||
|
|
||||||
$exists = $C2->getLinks(array('link_id'=>$upd_link_id),true)->f(0);
|
|
||||||
if (!$exists) {
|
|
||||||
throw new Exception(__('Unknown link.'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$C2->updLink($upd_link_id,$cur);
|
|
||||||
|
|
||||||
dcPage::addSuccessNotice(
|
dcPage::addSuccessNotice(
|
||||||
__('Link successfully updated.')
|
__('Category successfully deleted.')
|
||||||
);
|
);
|
||||||
|
$core->adminurl->redirect('admin.plugin.cinecturlink2', ['part' => 'cats']);
|
||||||
}
|
}
|
||||||
|
} catch (Exception $e) {
|
||||||
http::redirect(empty($_POST['redir']) ?
|
|
||||||
$p_url.'#links' : $_POST['redir']
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(Exception $e) {
|
|
||||||
$core->error->add($e->getMessage());
|
$core->error->add($e->getMessage());
|
||||||
}
|
|
||||||
|
|
||||||
# Construct lists
|
|
||||||
$show_filters = false;
|
|
||||||
$sortby = !empty($_GET['sortby']) ? $_GET['sortby'] : 'link_upddt';
|
|
||||||
$order = !empty($_GET['order']) ? $_GET['order'] : 'desc';
|
|
||||||
$page = !empty($_GET['page']) ? (integer) $_GET['page'] : 1;
|
|
||||||
$nb_per_page = 30;
|
|
||||||
if (!empty($_GET['nb']) && (integer) $_GET['nb'] > 0) {
|
|
||||||
if ($nb_per_page != $_GET['nb']) $show_filters = true;
|
|
||||||
$nb_per_page = (integer) $_GET['nb'];
|
|
||||||
}
|
|
||||||
|
|
||||||
$sortby_combo = array(
|
|
||||||
__('Date') => 'link_upddt',
|
|
||||||
__('Title') => 'link_title',
|
|
||||||
__('Category') => 'cat_title',
|
|
||||||
__('My rating') => 'link_note',
|
|
||||||
);
|
|
||||||
|
|
||||||
$order_combo = array(
|
|
||||||
__('Descending') => 'desc',
|
|
||||||
__('Ascending') => 'asc'
|
|
||||||
);
|
|
||||||
|
|
||||||
$params = array();
|
|
||||||
$params['limit'] = array((($page-1)*$nb_per_page),$nb_per_page);
|
|
||||||
|
|
||||||
if ($sortby != '' && in_array($sortby,$sortby_combo)) {
|
|
||||||
if ($order != '' && in_array($order,$order_combo)) {
|
|
||||||
$params['order'] = $sortby.' '.$order;
|
|
||||||
}
|
|
||||||
if ($sortby != 'link_upddt' || $order != 'desc') {
|
|
||||||
$show_filters = true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$categories = $C2->getCategories();
|
|
||||||
|
|
||||||
$categories_combo = array('-'=> '');
|
|
||||||
while($categories->fetch()) {
|
|
||||||
$cat_title = html::escapeHTML($categories->cat_title);
|
|
||||||
$categories_combo[$cat_title] = $categories->cat_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
$medias_combo = $tmp_medias_combo = $dir = null;
|
|
||||||
try {
|
|
||||||
$allowed_medias = array('png','jpg','gif','bmp','jpeg');
|
|
||||||
$core->media = new dcMedia($core);
|
|
||||||
$core->media->chdir($core->blog->settings->cinecturlink2->cinecturlink2_folder);
|
|
||||||
$core->media->getDir();
|
|
||||||
$dir =& $core->media->dir;
|
|
||||||
|
|
||||||
foreach($dir['files'] as $file) {
|
|
||||||
if (!in_array(files::getExtension($file->relname),$allowed_medias)) continue;
|
|
||||||
$tmp_medias_combo[$file->media_title] = $file->file_url;
|
|
||||||
}
|
|
||||||
if (!empty($tmp_medias_combo)) {
|
|
||||||
$medias_combo = array_merge(array('-'=>''),$tmp_medias_combo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception $e) {
|
|
||||||
//$core->error->add($e->getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
$langs_combo = l10n::getISOcodes(true);
|
|
||||||
$links_action_combo = array(
|
|
||||||
__('delete') => 'delete_links',
|
|
||||||
__('change category') => 'moveto_change_links_category',
|
|
||||||
__('change my rating') => 'moveto_change_links_note'
|
|
||||||
);
|
|
||||||
$notes_combo = array();
|
|
||||||
for ($i=0;$i<21;$i++) {
|
|
||||||
$notes_combo[$i.'/20'] = $i;
|
|
||||||
}
|
|
||||||
|
|
||||||
$pager_base_url = $p_url.
|
|
||||||
'&sortby='.$sortby.
|
|
||||||
'&order='.$order.
|
|
||||||
'&nb='.$nb_per_page.
|
|
||||||
'&page=%s';
|
|
||||||
|
|
||||||
try {
|
|
||||||
$links = $C2->getLinks($params);
|
|
||||||
$links_counter = $C2->getLinks($params,true)->f(0);
|
|
||||||
$links_list = new adminListCinecturlink2($core,$links,$links_counter,$pager_base_url);
|
|
||||||
}
|
|
||||||
catch (Exception $e) {
|
|
||||||
$core->error->add($e->getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
# Page headers
|
|
||||||
echo
|
echo
|
||||||
'<html><head>'.
|
'<html><head><title>'.__('Cinecturlink 2').'</title>' .
|
||||||
'<title>'.__('Cinecturlink 2').'</title>'.
|
$headers .
|
||||||
dcPage::jsToolBar().
|
'</head><body>'.
|
||||||
dcPage::jsToolMan().
|
dcPage::breadcrumb($breadcrumb) .
|
||||||
dcPage::jsLoad('js/_posts_list.js').
|
dcPage::notices();
|
||||||
dcPage::jsLoad('index.php?pf=cinecturlink2/js/cinecturlink2.js').
|
|
||||||
dcPage::jsPageTabs().
|
|
||||||
"<script type=\"text/javascript\">
|
|
||||||
//<![CDATA[\n".
|
|
||||||
dcPage::jsVar('dotclear.msg.show_filters', $show_filters ? 'true':'false')."\n".
|
|
||||||
dcPage::jsVar('dotclear.msg.filter_posts_list', __('Show filters and display options'))."\n".
|
|
||||||
dcPage::jsVar('dotclear.msg.cancel_the_filter', __('Cancel filters and display options'))."\n".
|
|
||||||
"
|
|
||||||
\$(function(){if(!document.getElementById){return;}
|
|
||||||
\$('#newlinksearch').openGoogle('".$core->auth->getInfo('user_lang')."','#new_title');
|
|
||||||
\$('#newimagesearch').openAmazon('".$core->auth->getInfo('user_lang')."','#new_title');
|
|
||||||
\$('#newimageselect').fillLink('#new_image');
|
|
||||||
});
|
|
||||||
//]]>\n".
|
|
||||||
"</script>\n".
|
|
||||||
'</head>'.
|
|
||||||
'<body>';
|
|
||||||
|
|
||||||
# Change category for links
|
|
||||||
if (!empty($_POST['links']) && $action == 'moveto_change_links_category') {
|
|
||||||
|
|
||||||
|
if ($part == "links") {
|
||||||
echo
|
echo
|
||||||
dcPage::breadcrumb(
|
'<p><a href="' .
|
||||||
array(
|
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']) .
|
||||||
html::escapeHTML($core->blog->name) => '',
|
'">' . __('Edit categories') .' </a></p>' .
|
||||||
__('Cinecturlink 2') => $p_url.'&move=1#links',
|
'<p class="top-add"><a class="button add" href="' .
|
||||||
__('Change category of links') => ''
|
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'link']) .
|
||||||
)
|
'">' . __('New Link') .' </a></p>';
|
||||||
).
|
|
||||||
dcPage::notices();
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<p class="nav_prevnext">
|
|
||||||
<a title="'.__('Go back to links list').'" href="'.$p_url.'&move=1#links">« '.__('Back').'</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div id="changecatlinks">
|
|
||||||
<form method="post" action="'.$p_url.'#links">
|
|
||||||
<p>'.__('Change category for this selection :').'</p>';
|
|
||||||
|
|
||||||
foreach($_POST['links'] as $k => $link) {
|
|
||||||
echo
|
|
||||||
'<p><label class="classic" for="links'.$k.'">'.
|
|
||||||
form::checkbox(array('links[]', 'links'.$k), $link, 1).' '.
|
|
||||||
$C2->getLinks(array('link_id' => $link))->f('link_title').
|
|
||||||
'</label></p>';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<p><label for="upd_category">'.__('Select a category:').' '.
|
|
||||||
form::combo('upd_category', $categories_combo, '', 'maximal').'
|
|
||||||
</label></p><p>
|
|
||||||
<input type="submit" name="updlinkcat" value="ok" />'.
|
|
||||||
form::hidden(array('action'), 'change_links_category').
|
|
||||||
$core->formNonce().'
|
|
||||||
</p>
|
|
||||||
</form>
|
|
||||||
</div>';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Change note for links
|
if ($part == "link") {
|
||||||
elseif (!empty($_POST['links']) && $action == 'moveto_change_links_note')
|
|
||||||
{
|
|
||||||
echo dcPage::breadcrumb(
|
|
||||||
array(
|
|
||||||
html::escapeHTML($core->blog->name) => '',
|
|
||||||
__('Cinecturlink 2') => $p_url.'&move=1#links',
|
|
||||||
__('Change note of links') => ''
|
|
||||||
)
|
|
||||||
).
|
|
||||||
dcPage::notices();
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<p class="nav_prevnext">
|
|
||||||
<a title="'.__('Go back to links list').'" href="'.$p_url.'&move=1#links">« '.__('Back').'</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div id="changenotelinks">
|
|
||||||
<form method="post" action="'.$p_url.'#links">
|
|
||||||
<p>'.__('Change note for this selection :').'</p>';
|
|
||||||
|
|
||||||
foreach($_POST['links'] as $k => $link) {
|
|
||||||
echo
|
|
||||||
'<p><label class="classic" for="links'.$k.'">'.
|
|
||||||
form::checkbox(array('links[]', 'links'.$k), $link, 1).' '.
|
|
||||||
$C2->getLinks(array('link_id'=>$link))->f('link_title').
|
|
||||||
'</label></p>';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<p><label for="upd_note">'.__('Select a rating:').' '.
|
|
||||||
form::combo('upd_note',$notes_combo, 10, 'maximal').'
|
|
||||||
</label></p><p>
|
|
||||||
<input type="submit" name="updlinknote" value="ok" />'.
|
|
||||||
form::hidden(array('action'), 'change_links_note').
|
|
||||||
$core->formNonce().'
|
|
||||||
</p>
|
|
||||||
</form>
|
|
||||||
</div>';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# All other tabs
|
if ($part == "cats") {
|
||||||
else {
|
|
||||||
|
|
||||||
echo dcPage::breadcrumb(
|
|
||||||
array(
|
|
||||||
html::escapeHTML($core->blog->name) => '',
|
|
||||||
__('Cinecturlink 2') => ''
|
|
||||||
)
|
|
||||||
).
|
|
||||||
dcPage::notices();
|
|
||||||
|
|
||||||
# List links
|
|
||||||
echo '
|
|
||||||
<div class="multi-part" id="links" title="'.__('Links').'">';
|
|
||||||
|
|
||||||
if ($links->isEmpty()) {
|
|
||||||
echo '<p>'.__('There is no link').'</p>';
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
echo '
|
|
||||||
<form action="'.$p_url.'#links" method="get" id="filters-form">
|
|
||||||
<h3 class="out-of-screen-if-js">'.__('Show filters and display options').'</h3>
|
|
||||||
|
|
||||||
<div class="table">'.
|
|
||||||
|
|
||||||
'<div class="cell">'.
|
|
||||||
'<p><label for="sortby" class="ib">'.__('Order by:').'</label> '.
|
|
||||||
form::combo('sortby',$sortby_combo,$sortby).'</p>'.
|
|
||||||
'</div><div class="cell">'.
|
|
||||||
'<p><label for="order" class="ib">'.__('Sort:').'</label> '.
|
|
||||||
form::combo('order',$order_combo,$order).'</p>'.
|
|
||||||
'</div><div class="cell">'.
|
|
||||||
'<p><span class="label ib">'.__('Show').'</span> <label for="nb" class="classic">'.
|
|
||||||
form::field('nb',3,3,$nb_per_page).' '.
|
|
||||||
__('entries per page').'</label></p>'.
|
|
||||||
'</div>'.
|
|
||||||
'</div>'.
|
|
||||||
|
|
||||||
'<p><input type="submit" value="'.__('Apply filters and display options').'" />'.
|
|
||||||
form::hidden(array('p'), 'cinecturlink2').
|
|
||||||
'<br class="clear" /></p>'. //Opera sucks
|
|
||||||
|
|
||||||
'</form>
|
|
||||||
|
|
||||||
<form action="'.$p_url.'#links" method="post" id="form-actions">';
|
|
||||||
|
|
||||||
$links_list->display($page,$nb_per_page,$pager_base_url);
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<div class="two-cols">
|
|
||||||
<p class="col checkboxes-helpers"></p>
|
|
||||||
<p class="col right">'.__('Selected links action:').' '.
|
|
||||||
form::combo(array('action'),$links_action_combo).'
|
|
||||||
<input type="submit" value="'.__('ok').'" />'.
|
|
||||||
form::hidden(array('sortby'),$sortby).
|
|
||||||
form::hidden(array('order'),$order).
|
|
||||||
form::hidden(array('page'),$page).
|
|
||||||
form::hidden(array('nb'),$nb_per_page).
|
|
||||||
$core->formNonce().'
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</form>';
|
|
||||||
}
|
|
||||||
echo '
|
|
||||||
</div>';
|
|
||||||
|
|
||||||
# Create/edit link
|
|
||||||
$title = __('New link');
|
|
||||||
|
|
||||||
if (null !== $upd_link_id) {
|
|
||||||
|
|
||||||
$upd_rs = $C2->getLinks(array('link_id' => $upd_link_id));
|
|
||||||
$upd_link_id = null;
|
|
||||||
if (!$upd_rs->isEmpty()) {
|
|
||||||
$new_title = $upd_rs->link_title;
|
|
||||||
$new_desc = $upd_rs->link_desc;
|
|
||||||
$new_author = $upd_rs->link_author;
|
|
||||||
$new_url = $upd_rs->link_url;
|
|
||||||
$new_category = $upd_rs->cat_id;
|
|
||||||
$new_lang = $upd_rs->link_lang;
|
|
||||||
$new_image = $upd_rs->link_img;
|
|
||||||
$new_note = $upd_rs->link_note;
|
|
||||||
$upd_link_id = $upd_rs->link_id;
|
|
||||||
$title = __('Edit link');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<div class="multi-part" id="newlink" title="'.$title.'">
|
|
||||||
<form id="newlinkform" method="post" action="'.$p_url.'#newlink">
|
|
||||||
|
|
||||||
<div class="two-cols clearfix">
|
|
||||||
<div class="col70">
|
|
||||||
|
|
||||||
<p><label for="new_title">'.__('Title:').' '.
|
|
||||||
form::field('new_title', 60, 255, $new_title, 'maximal').
|
|
||||||
'</label></p>
|
|
||||||
|
|
||||||
<p><label for="new_desc">'.__('Description:').' '.
|
|
||||||
form::field('new_desc', 60, 255, $new_desc, 'maximal').
|
|
||||||
'</label></p>
|
|
||||||
|
|
||||||
<p><label for="new_author">'.__('Author:').' '.
|
|
||||||
form::field('new_author', 60, 255, $new_author, 'maximal').
|
|
||||||
'</label></p>
|
|
||||||
|
|
||||||
<p><label for="new_url">'.__('Details URL:').' '.
|
|
||||||
form::field('new_url', 60, 255, $new_url, 'maximal').'</label>'.
|
|
||||||
'<a class="modal" href="http://google.com" id="newlinksearch">'.
|
|
||||||
__('Search with Google').'</a>'.
|
|
||||||
'</p>
|
|
||||||
|
|
||||||
<p><label for="new_image">'.__('Image URL:').' '.
|
|
||||||
form::field('new_image', 60, 255, $new_image, 'maximal').'</label>'.
|
|
||||||
'<a class="modal" href="http://amazon.com" id="newimagesearch">'.
|
|
||||||
__('Search with Amazon').'</a>'.
|
|
||||||
'</p>';
|
|
||||||
|
|
||||||
if (empty($medias_combo)) {
|
|
||||||
echo
|
echo
|
||||||
'<p class="form-note">'.__('There is no image in cinecturlink media path.').'</p>';
|
'<p class="top-add"><a class="button add" href="' .
|
||||||
}
|
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cat']) .
|
||||||
else {
|
'">' . __('New Category') .' </a></p>';
|
||||||
echo '
|
|
||||||
<p><label for="newimageselect">'.__('or select from repository:').' '.
|
|
||||||
form::combo('newimageselect', $medias_combo, '', 'maximal').
|
|
||||||
'</label></p>'.
|
|
||||||
'<p class="form-note">'.__('Go to media manager to add image to cinecturlink path.').'</p>';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col30">
|
|
||||||
|
|
||||||
<p><label for="new_category">'.__('Category:').' '.
|
|
||||||
form::combo('new_category', $categories_combo, $new_category, 'maximal').
|
|
||||||
'</label></p>
|
|
||||||
|
|
||||||
<p><label for="new_lang">'.__('Lang:').' '.
|
|
||||||
form::combo('new_lang', $langs_combo, $new_lang, 'maximal').
|
|
||||||
'</label></p>
|
|
||||||
|
|
||||||
<p><label for="new_note">'.__('My rating:').' '.
|
|
||||||
form::combo('new_note', $notes_combo, $new_note, 'maximal').
|
|
||||||
'</label></p>
|
|
||||||
|
|
||||||
</div></div>
|
|
||||||
|
|
||||||
<p>'.
|
|
||||||
form::hidden(array('link_id'),$upd_link_id).
|
|
||||||
form::hidden(array('action'),'create_link').
|
|
||||||
$core->formNonce().'
|
|
||||||
<input type="submit" name="newlink" value="'.($upd_link_id ? __('update link') : __('create link')).'" />
|
|
||||||
</p>
|
|
||||||
</form>
|
|
||||||
</div>';
|
|
||||||
|
|
||||||
# List categories
|
|
||||||
echo '<div class="multi-part" id="cats" title="'.__('Categories').'">';
|
|
||||||
|
|
||||||
if ($categories->isEmpty()) {
|
if ($categories->isEmpty()) {
|
||||||
echo '<p>'.__('There is no category').'</p>';
|
echo '<p>'.__('There is no category').'</p>';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
echo '
|
echo '
|
||||||
<form method="post" action="'.$p_url.'#cats">
|
<form id="c2items" method="post" action="' .
|
||||||
<table class="maximal dragable">
|
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']) . '">
|
||||||
<thead><tr><th colspan="2">#</th><th>'.__('name').'</th><th>'.__('description').'</th></tr></thead>
|
<div class="table-outer">
|
||||||
<tbody id="links-list-cat">';
|
<table class="dragable">
|
||||||
|
<caption>' . __('Categories list') . '</caption>
|
||||||
|
<thead><tr>
|
||||||
|
<th colspan="3" scope="col">'.__('name').'</th>
|
||||||
|
<th scope="col">'.__('description').'</th>
|
||||||
|
</tr></thead>
|
||||||
|
<tbody id="c2itemslist">';
|
||||||
|
|
||||||
$i = 0;
|
$i = 0;
|
||||||
while($categories->fetch()) {
|
while($categories->fetch()) {
|
||||||
$i++;
|
|
||||||
$id = $categories->cat_id;
|
$id = $categories->cat_id;
|
||||||
$title = html::escapeHTML($categories->cat_title);
|
|
||||||
$desc = html::escapeHTML($categories->cat_desc);
|
|
||||||
|
|
||||||
echo '
|
echo
|
||||||
<tr class="line" id="l_'.$id.'">
|
'<tr class="line" id="l_' . $i . '">' .
|
||||||
<td class="minimal handle">'.form::field(array('catpos['.$id.']'),2,5,$i).'</td>
|
'<td class="handle minimal">' .
|
||||||
<td class="minimal">'.form::checkbox(array('delcat[]'),$id).'</td>
|
form::number(['order[' . $id . ']'], [
|
||||||
<td class="nowrap">'.$title.'</td>
|
'min' => 1,
|
||||||
<td class="maximal">'.$desc.'</td>
|
'max' => $categories->count(),
|
||||||
|
'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="' .
|
||||||
|
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cat', 'catid' => $id]) .
|
||||||
|
'">' . html::escapeHTML($categories->cat_title) . '</a></td>
|
||||||
|
<td class="maximal">' . html::escapeHTML($categories->cat_desc) . '</td>
|
||||||
</tr>';
|
</tr>';
|
||||||
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
<p class="form-note">'.__('Check to delete').'</p>
|
<p class="form-note">'.__('Check to delete').'</p>
|
||||||
<p>'.
|
<p class="border-top">' .
|
||||||
form::hidden('cats_order', '').
|
'<input type="submit" value="' . __('Save order') . ' (s)" accesskey="s" name="save" /> ' .
|
||||||
form::hidden(array('action'), 'update_categories').
|
'<a id="post-cancel" href="' .
|
||||||
$core->formNonce().'
|
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']) .
|
||||||
<input type="submit" name="updcats" value="'.__('update categories').'" />
|
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> '.
|
||||||
</p>
|
'<input type="submit" class="delete" value="' . __('Delete selection') . '" name="delete" />' .
|
||||||
</form>';
|
form::hidden('im_order', '') .
|
||||||
|
$core->formNonce() . '</p>' .
|
||||||
|
'</form>';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($part == 'cat') {
|
||||||
|
if (!empty($catid)) {
|
||||||
|
$category = $C2->getCategories(['cat_id' => $catid]);
|
||||||
|
if (!$category->isEmpty()) {
|
||||||
|
$cattitle = $category->cat_title;
|
||||||
|
$catdesc = $category->cat_desc;
|
||||||
|
}
|
||||||
|
}
|
||||||
echo '
|
echo '
|
||||||
</div>';
|
<h3>' . (empty($catid) ? __('Add categorie') : __('Edit categorie')) . '</h3>
|
||||||
|
<form method="post" action="'. $core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cat']) .'">
|
||||||
# Create category
|
<p><label for="cattitle">' . __('Title:') . ' ' .
|
||||||
echo '
|
form::field('cattitle', 60, 64, $cattitle, 'maximal') .
|
||||||
<div class="multi-part" id="newcat" title="'.__('New category').'">
|
|
||||||
<form method="post" action="'.$p_url.'#newcat">
|
|
||||||
|
|
||||||
<p><label for="new_cattitle">'.__('Title:').' '.
|
|
||||||
form::field('new_cattitle', 60, 64, $new_cattitle, 'maximal').
|
|
||||||
'</label></p>
|
'</label></p>
|
||||||
|
<p><label for="catdesc">' . __('Description:') . ' ' .
|
||||||
<p><label for="new_catdesc">'.__('Description:').' '.
|
form::field('catdesc', 60, 64, $catdesc, 'maximal') .
|
||||||
form::field('new_catdesc', 60, 64, $new_catdesc, 'maximal').
|
|
||||||
'</label></p>
|
'</label></p>
|
||||||
|
<p class="border-top">' .
|
||||||
<p>'.
|
'<input type="submit" value="' . __('Save') . ' (s)" accesskey="s" name="save" /> ' .
|
||||||
form::hidden(array('action'), 'create_category').
|
'<a id="post-cancel" href="' .
|
||||||
$core->formNonce().'
|
$core->adminurl->get('admin.plugin.cinecturlink2', ['part' => 'cats']) .
|
||||||
<input type="submit" name="newcat" value="'.__('save').'" />
|
'" class="button" accesskey="c">' . __('Cancel') . ' (c)</a> '.
|
||||||
</p>
|
(!empty($catid) ? ' <input type="submit" class="delete" value="' . __('Delete') . '" name="delete" />' : '') .
|
||||||
</form>
|
form::hidden('catid', $catid) .
|
||||||
</div>';
|
$core->formNonce() . '</p>' .
|
||||||
|
'</form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
dcPage::helpBlock('cinecturlink2');
|
dcPage::helpBlock('cinecturlink2');
|
||||||
|
|
||||||
# Page footer
|
echo '</body></html>';
|
||||||
echo
|
|
||||||
'<hr class="clear"/><p class="right modules">
|
|
||||||
<a class="module-config" '.
|
|
||||||
'href="plugins.php?module=cinecturlink2&conf=1&redir='.
|
|
||||||
urlencode('plugin.php?p=cinecturlink2').'">'.__('Configuration').'</a> -
|
|
||||||
cinecturlink2 - '.$core->plugins->moduleInfo('cinecturlink2', 'version').'
|
|
||||||
<img alt="'.__('cinecturlink2').'" src="index.php?pf=cinecturlink2/icon.png" />
|
|
||||||
</p>
|
|
||||||
</body></html>';
|
|
@ -1,102 +1,31 @@
|
|||||||
/* -- BEGIN LICENSE BLOCK ----------------------------------
|
/*global $, dotclear */
|
||||||
* This file is part of cinecturlink2, a plugin for Dotclear 2.
|
'use strict';
|
||||||
*
|
|
||||||
* Copyright (c) 2009-2010 JC Denis and contributors
|
|
||||||
* jcdenis@gdwd.com
|
|
||||||
*
|
|
||||||
* 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 ------------------------------------*/
|
|
||||||
|
|
||||||
;if(window.jQuery) (function($){
|
$(function () {
|
||||||
$.fn.openGoogle = function(lang,target){
|
$('#c2itemslist').sortable({
|
||||||
return this.each(function(){
|
cursor: 'move',
|
||||||
$(this).click(function(){
|
});
|
||||||
var val = $(target).attr('value');
|
$('#c2itemslist tr')
|
||||||
if (val!=''){
|
.on('mouseenter', function () {
|
||||||
searchwindow=window.open('http://www.google.com/search?hl='+lang+'&q='+val,'search','scrollbars=yes,width=800,height=600,resize=yes,toolbar=yes,menubar=yes');
|
$(this).css({
|
||||||
searchwindow.focus();
|
cursor: 'move',
|
||||||
}
|
});
|
||||||
return false;
|
})
|
||||||
|
.on('mouseleave', function () {
|
||||||
|
$(this).css({
|
||||||
|
cursor: 'auto',
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
$('#c2items').on('submit', function () {
|
||||||
$.fn.openAmazon = function(lang,target){
|
let order = [];
|
||||||
return this.each(function(){
|
$('#c2itemslist tr td input.position').each(function () {
|
||||||
$(this).click(function(){
|
order.push(this.name.replace(/^order\[([^\]]+)\]$/, '$1'));
|
||||||
var val = $(target).attr('value');
|
|
||||||
if (val!=''){
|
|
||||||
searchwindow=window.open('http://www.amazon.fr/exec/obidos/external-search?keyword='+val+'&mode=blended','search','scrollbars=yes,width=800,height=600,resize=yes,toolbar=yes,menubar=yes');
|
|
||||||
searchwindow.focus();
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
});
|
});
|
||||||
});
|
$('input[name=im_order]')[0].value = order.join(',');
|
||||||
}
|
|
||||||
$.fn.fillLink = function(target){
|
|
||||||
return this.each(function(){
|
|
||||||
$(this).change(function(){
|
|
||||||
$(target).attr('value',$(this).attr('value'));
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})(jQuery);
|
|
||||||
|
|
||||||
var dragsort = ToolMan.dragsort();
|
|
||||||
$(function(){
|
|
||||||
dragsort.makeTableSortable($('#links-list-cat').get(0),
|
|
||||||
dotclear.sortable.setHandle,dotclear.sortable.saveOrder);
|
|
||||||
});
|
|
||||||
dotclear.sortable = {
|
|
||||||
setHandle: function(item) {
|
|
||||||
var handle = $(item).find('td.handle').get(0);
|
|
||||||
while (handle.firstChild) {
|
|
||||||
handle.removeChild(handle.firstChild);
|
|
||||||
}
|
|
||||||
item.toolManDragGroup.setHandle(handle);
|
|
||||||
handle.className = handle.className+' handler';
|
|
||||||
},
|
|
||||||
saveOrder: function(item) {
|
|
||||||
var group = item.toolManDragGroup;
|
|
||||||
var order = document.getElementById('cats_order');
|
|
||||||
group.register('dragend', function() {
|
|
||||||
order.value = '';
|
|
||||||
items = item.parentNode.getElementsByTagName('tr');
|
|
||||||
for (var i=0; i<items.length; i++) {
|
|
||||||
order.value += items[i].id.substr(2)+',';
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
$(function() {
|
|
||||||
|
|
||||||
$filtersform = $('#filters-form');
|
|
||||||
$filtersform.before('<p><a id="filter-control" class="form-control" href="plugin.php?p=cinecturlink2" style="display:inline">'+dotclear.msg.filter_posts_list+'</a></p>')
|
|
||||||
|
|
||||||
if( dotclear.msg.show_filters == 'false' ) {
|
|
||||||
$filtersform.hide();
|
|
||||||
} else {
|
|
||||||
$('#filter-control')
|
|
||||||
.addClass('open')
|
|
||||||
.text(dotclear.msg.cancel_the_filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
$('#filter-control').click(function() {
|
|
||||||
if( $(this).hasClass('open') ) {
|
|
||||||
if( dotclear.msg.show_filters == 'true' ) {
|
|
||||||
return true;
|
return true;
|
||||||
} else {
|
|
||||||
$filtersform.hide();
|
|
||||||
$(this).removeClass('open')
|
|
||||||
.text(dotclear.msg.filter_posts_list);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$filtersform.show();
|
|
||||||
$(this).addClass('open')
|
|
||||||
.text(dotclear.msg.cancel_the_filter);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
});
|
});
|
||||||
|
$('#c2itemslist tr td input.position').hide();
|
||||||
|
$('#c2itemslist tr td.handle').addClass('handler');
|
||||||
|
dotclear.condSubmit('#c2items tr td input[name^=items_selected]', '#c2items #remove-action');
|
||||||
|
dotclear.responsiveCellHeaders(document.querySelector('#c2items table'), '#c2items table', 2);
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user