Home
last modified time | relevance | path

Searched refs:date_detail (Results 1 – 3 of 3) sorted by relevance

/dports/www/piwigo/piwigo/include/
H A Dfunctions_notification.inc.php530 * @param array $date_detail returned value of get_recent_post_dates()
533 function get_html_description_recent_post_date($date_detail, $auth_key=null) argument
547 .l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements'])
554 foreach($date_detail['elements'] as $element)
573 .l10n_dec('%d album updated', '%d albums updated', $date_detail['nb_cats'])
577 foreach($date_detail['categories'] as $cat)
596 * @param array $date_detail returned value of get_recent_post_dates()
599 function get_title_recent_post_date($date_detail) argument
603 $date = $date_detail['date_available'];
606 $title = l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements']);
/dports/www/piwigo/piwigo/
H A Dfeed.php153 foreach($dates as $date_detail)
156 $date = $date_detail['date_available'];
157 $item->title = get_title_recent_post_date($date_detail);
170 $item->description .= get_html_description_recent_post_date($date_detail);
/dports/www/piwigo/piwigo/admin/
H A Dnotification_by_mail.php355 foreach ($recent_post_dates as $date_detail)
362 'TITLE' => get_title_recent_post_date($date_detail),
363 'HTML_DATA' => get_html_description_recent_post_date($date_detail, $auth)