Your IP : 216.73.216.130


Current Path : /home/m/a/g/magalijoj/www/blog/admin/
Upload File :
Current File : /home/m/a/g/magalijoj/www/blog/admin/categories.php

<?php
# ***** BEGIN LICENSE BLOCK *****
# This file is part of DotClear.
# Copyright (c) 2005 Olivier Meunier and contributors. All rights
# reserved.
#
# DotClear is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# DotClear is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with DotClear; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# ***** END LICENSE BLOCK *****

require dirname(__FILE__).'/../inc/admin/prepend.php';

dcPage::check('categories');

# Remove categories
if (!empty($_POST['removeaction']) && !empty($_POST['remove']) && is_array($_POST['remove']))
{
	foreach ($_POST['remove'] as $v)
	{
		try {
			$core->blog->delCategory($v);
		} catch (Exception $e) {
			$core->error->add($e->getMessage());
			break;
		}
	}
	
	if (!$core->error->flag()) {
		http::redirect('categories.php?del=1');
	}
}

# Order
$order = array();
if (empty($_POST['categories_order']) && !empty($_POST['order'])) {
	$order = $_POST['order'];
	asort($order);
	$order = array_keys($order);
} elseif (!empty($_POST['categories_order'])) {
	$order = explode(',',$_POST['categories_order']);
}

if (!empty($_POST['saveorder']) && !empty($order))
{
	foreach ($order as $pos => $c) {
		$pos = ((integer) $pos)+1;
		
		try {
			$core->blog->updCategoryOrder($c,$pos);
		} catch (Exception $e) {
			$core->error->add($e->getMessage());
		}
	}
	
	if (!$core->error->flag()) {
		http::redirect('categories.php?neworder=1');
	}
}

try {
	$rs = $core->blog->getCategories();
} catch (Exception $e) {
	$core->error->add($e->getMessage());
}

/* Display
-------------------------------------------------------- */
dcPage::open(__('categories'),
	dcPage::jsConfirmClose('form-categories').
	dcPage::jsToolMan()."\n".
	dcPage::jsLoad('js/_categories.js').
	dcPage::jsLoad('js/confirmClose.js')
);

if (!$core->error->flag())
{
	if (!empty($_GET['neworder'])) {
		echo '<p class="message">'.__('Category order has been successfully updated.').'</p>';
	}
	
	if (!empty($_GET['add'])) {
		echo '<p class="message">'.__('The category has been successfully created.').'</p>';
	}
	
	if (!empty($_GET['del'])) {
		echo '<p class="message">'.__('Categories have been successfully removed.').'</p>';
	}
	
	echo '<h2>'.html::escapeHTML($core->blog->name).' &gt; '.__('categories').'</h2>';
	
	echo
	'<form action="category.php" method="post">'.
	'<p><label class="classic">'.__('Title:').
	dcPage::help('categories','cat_new_title').
	form::field('cat_title',20,255,'','',2).
	'</label> '.
	'<input type="submit" value="'.__('Create new category').'" />'.
	$core->formNonce().'</p>'.
	'</form>';
	
	if ($rs->isEmpty())
	{
		echo '<p>'.__('No category.').'</p>';
	}
	else
	{
		echo
		'<form action="categories.php" method="post" id="form-categories">'.
		'<table class="dragable">'.
		'<thead><tr><th colspan="3">'.__('Name').'</th>'.
		'<th>'.__('Entries').'</th>'.
		'</tr></thead>'.
		'<tbody id="categories-list">';
		
		while ($rs->fetch())
		{
			$deletable = false;
			
			$posts_link = '<a href="posts.php?cat_id=%s">%s</a>';
			
			switch ($rs->nb_post) {
				case 0:
					$nb_post = __('No entry');
					$deletable = true;
					break;
				case 1:
					$nb_post = sprintf($posts_link,$rs->cat_id,__('1 entry'));
					break;
				default:
					$nb_post = sprintf($posts_link,$rs->cat_id,
					sprintf(__('%d entries'),$rs->nb_post));
					break;
			}
			
			$position = (string) $rs->index()+1;
			
			echo
			'<tr class="line" id="c_'.$rs->cat_id.'">'.
			'<td class="handle">'.form::field(array('order['.$rs->cat_id.']'),2,5,$position).'</td>'.
			'<td>'.($rs->nb_post==0 ? form::checkbox(array('remove[]'),$rs->cat_id) : '').'</td>'.
			'<td class="maximal"><a href="category.php?id='.$rs->cat_id.'">'.
			html::escapeHTML($rs->cat_title).'</a></td>'.
			'<td class="nowrap">'.$nb_post.'</td>'.
			'</tr>';
		}
		
		echo
		'</tbody></table>'.
		
		'<div class="two-cols">'.
		'<p class="col">'.form::hidden('categories_order','').
		'<input type="submit" name="saveorder" value="'.__('Save order').'" />'.
		dcPage::help('categories','cat_order').'</p>'.
		
		'<p class="col right"><input type="submit" name="removeaction" '.
		'value="'.__('Delete selected categories').'" />'.
		$core->formNonce().'</p>'.
		'</div>'.
		'</form>';
	}
}
dcPage::close(); ?>