<?php
# -- BEGIN LICENSE BLOCK ---------------------------------------
#
# This file is part of Dotclear 2.
#
# Copyright (c) 2003-2011 Olivier Meunier & Association Dotclear
# Licensed under the GPL version 2.0 license.
# See LICENSE file or
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK -----------------------------------------
if (!defined('DC_CONTEXT_ADMIN')) { return; }
dcPage::check('pages,contentadmin');
/* Pager class
-------------------------------------------------------- */
class adminPageList extends adminGenericList
{
public function display($page,$nb_per_page,$enclose_block='')
{
if ($this->rs->isEmpty())
{
echo '<p><strong>'.__('No page').'</strong></p>';
}
else
{
$pager = new pager($page,$this->rs_count,$nb_per_page,10);
$pager->html_prev = $this->html_prev;
$pager->html_next = $this->html_next;
$pager->var_page = 'page';
$html_block =
'<table class="clear"><tr>'.
'<th colspan="2">'.__('Title').'</th>'.
'<th>'.__('Date').'</th>'.
'<th>'.__('Author').'</th>'.
'<th>'.__('Comments').'</th>'.
'<th>'.__('Trackbacks').'</th>'.
'<th>'.__('Status').'</th>'.
'</tr>%s</table>';
if ($enclose_block) {
$html_block = sprintf($enclose_block,$html_block);
}
echo '<p>'.__('Page(s)').' : '.$pager->getLinks().'</p>';
$blocks = explode('%s',$html_block);
echo $blocks[0];
while ($this->rs->fetch())
{
echo $this->postLine();
}
echo $blocks[1];
echo '<p>'.__('Page(s)').' : '.$pager->getLinks().'</p>';
}
}
private function postLine()
{
$img = '<img alt="%1$s" title="%1$s" src="images/%2$s" />';
switch ($this->rs->post_status) {
case 1:
$img_status = sprintf($img,__('published'),'check-on.png');
break;
case 0:
$img_status = sprintf($img,__('unpublished'),'check-off.png');
break;
case -1:
$img_status = sprintf($img,__('scheduled'),'scheduled.png');
break;
case -2:
$img_status = sprintf($img,__('pending'),'check-wrn.png');
break;
}
$protected = '';
if ($this->rs->post_password) {
$protected = sprintf($img,__('protected'),'locker.png');
}
$selected = '';
if ($this->rs->post_selected) {
$selected = sprintf($img,__('hidden'),'hidden.png');
}
$attach = '';
$nb_media = $this->rs->countMedia();
if ($nb_media > 0) {
$attach_str = $nb_media == 1 ? __('%d attachment') : __('%d attachments');
$attach = sprintf($img,sprintf($attach_str,$nb_media),'attach.png');
}
$res = '<tr class="line'.($this->rs->post_status != 1 ? ' offline' : '').'"'.
' id="p'.$this->rs->post_id.'">';
$res .=
'<td class="nowrap">'.
form::checkbox(array('entries[]'),$this->rs->post_id,'','','',!$this->rs->isEditable(),'title="'.__('select this page').'"').'</td>'.
'<td class="maximal"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'.
html::escapeHTML($this->rs->post_title).'</a></td>'.
'<td class="nowrap">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'.
'<td class="nowrap">'.$this->rs->user_id.'</td>'.
'<td class="nowrap">'.$this->rs->nb_comment.'</td>'.
'<td class="nowrap">'.$this->rs->nb_trackback.'</td>'.
'<td class="nowrap status">'.$img_status.' '.$selected.' '.$protected.' '.$attach.'</td>'.
'</tr>';
return $res;
}
}
/* Getting pages
-------------------------------------------------------- */
$params = array(
'post_type' => 'page'
);
$page = !empty($_GET['page']) ? (integer) $_GET['page'] : 1;
$nb_per_page = 30;
if (!empty($_GET['nb']) && (integer) $_GET['nb'] > 0) {
$nb_per_page = (integer) $_GET['nb'];
}
$params['limit'] = array((($page-1)*$nb_per_page),$nb_per_page);
$params['no_content'] = true;
$params['order'] = 'post_position ASC, post_title ASC';
try {
$pages = $core->blog->getPosts($params);
$counter = $core->blog->getPosts($params,true);
$post_list = new adminPageList($core,$pages,$counter->f(0));
} catch (Exception $e) {
$core->error->add($e->getMessage());
}
# Actions combo box
$combo_action = array();
if ($core->auth->check('publish,contentadmin',$core->blog->id))
{
$combo_action[__('publish')] = 'publish';
$combo_action[__('unpublish')] = 'unpublish';
$combo_action[__('schedule')] = 'schedule';
$combo_action[__('mark as pending')] = 'pending';
}
if ($core->auth->check('admin',$core->blog->id)) {
$combo_action[__('change author')] = 'author';
}
if ($core->auth->check('delete,contentadmin',$core->blog->id))
{
$combo_action[__('delete')] = 'delete';
}
# --BEHAVIOR-- adminPagesActionsCombo
$core->callBehavior('adminPagesActionsCombo',array(&$combo_action));
/* Display
-------------------------------------------------------- */
?>
<html>
<head>
<title><?php echo __('Pages'); ?></title>
<script type="text/javascript" src="js/_posts_list.js"></script>
<script type="text/javascript">
//<![CDATA[
<?php echo dcPage::jsVar('dotclear.msg.confirm_delete_posts',__("Are you sure you want to delete selected pages?")); ?>
//]]>
</script>
</head>
<body>
<?php
echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Pages').'</span></h2>'.
'<p class="top-add"><a class="button add" href="'.$p_url.'&act=page">'.__('New page').'</a></p>';
if (!$core->error->flag())
{
# Show pages
$post_list->display($page,$nb_per_page,
'<form action="posts_actions.php" method="post" id="form-entries">'.
'%s'.
'<div class="two-cols">'.
'<p class="col checkboxes-helpers"></p>'.
'<p class="col right"><label for="action" class="classic">'.__('Selected pages action:').'</label> '.
form::combo('action',$combo_action).
'<input type="submit" value="'.__('ok').'" /></p>'.
form::hidden(array('post_type'),'page').
form::hidden(array('redir'),html::escapeHTML($_SERVER['REQUEST_URI'])).
$core->formNonce().
'</div>'.
'</form>');
}
dcPage::helpBlock('pages');
?>
</body>
</html>