mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-12 03:33:01 +02:00
Add on $conf value of the function get_recent_post_dates
git-svn-id: http://piwigo.org/svn/trunk@1871 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -577,6 +577,12 @@ $conf['nbm_max_treatment_timeout_percent'] = 0.8;
|
||||
// nbm_treatment_timeout_default is used by default
|
||||
$conf['nbm_treatment_timeout_default'] = 20;
|
||||
|
||||
// Parameters used in get_recent_post_dates for the 2 kind of notification
|
||||
$conf['recent_post_dates'] = array(
|
||||
'RSS' => array('max_dates' => 5, 'max_elements' => 6, 'max_cats' => 6),
|
||||
'NBM' => array('max_dates' => 7, 'max_elements' => 3, 'max_cats' => 9)
|
||||
);
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Set default admin layout |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
@@ -511,6 +511,23 @@ SELECT DISTINCT c.uppercats, COUNT(DISTINCT i.id) img_count
|
||||
return $dates;
|
||||
}
|
||||
|
||||
/*
|
||||
Call function get_recent_post_dates but
|
||||
the parameters to be passed to the function, as an indexed array.
|
||||
|
||||
*/
|
||||
function get_recent_post_dates_array($args)
|
||||
{
|
||||
return
|
||||
get_recent_post_dates
|
||||
(
|
||||
(empty($args['max_dates']) ? 3 : $args['max_dates']),
|
||||
(empty($args['max_elements']) ? 3 : $args['max_elements']),
|
||||
(empty($args['max_cats']) ? 3 : $args['max_cats'])
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* returns html description about recently published elements grouped by post date
|
||||
* @param $date_detail: selected date computed by get_recent_post_dates function
|
||||
|
||||
Reference in New Issue
Block a user