<?php
|
|
|
|
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
|
|
//
|
|
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
|
|
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
|
|
// $Id$
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
function module_num_submissions_info()
|
|
{
|
|
return [
|
|
'name' => tra('Pending Article Submissions'),
|
|
'description' => tra('Displays the number of article submissions waiting examination and a link to the list.'),
|
|
'prefs' => ['feature_submissions'],
|
|
'params' => []
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param $mod_reference
|
|
* @param $module_params
|
|
*/
|
|
function module_num_submissions($mod_reference, $module_params)
|
|
{
|
|
$smarty = TikiLib::lib('smarty');
|
|
$artlib = TikiLib::lib('art');
|
|
$ranking = $artlib->list_submissions(0, -1, 'created_desc', '', '');
|
|
$smarty->assign('modNumSubmissions', $ranking["cant"]);
|
|
}
|