From 6032c11d7a88651d85154ffe835a26b3f569c893 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 20 Mar 2014 17:03:06 +0100 Subject: add docblocks to all files, classes, methods and variables --- src/bdrem/Renderer.php | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) (limited to 'src/bdrem/Renderer.php') diff --git a/src/bdrem/Renderer.php b/src/bdrem/Renderer.php index 363d413..7357af6 100644 --- a/src/bdrem/Renderer.php +++ b/src/bdrem/Renderer.php @@ -1,10 +1,44 @@ + * @copyright 2014 Christian Weiske + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @link http://cweiske.de/bdrem.htm + */ namespace bdrem; +/** + * Base event renderer + * + * @category Tools + * @package Bdrem + * @author Christian Weiske + * @copyright 2014 Christian Weiske + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @version Release: @package_version@ + * @link http://cweiske.de/bdrem.htm + */ abstract class Renderer { + /** + * HTTP content type of output + * @var string + */ protected $httpContentType = null; + /** + * Call the renderer and output the rendering result to shell or browser + * + * @param array $arEvents Event objects to render + * + * @return void + */ public function renderAndOutput($arEvents) { if (PHP_SAPI != 'cli' && $this->httpContentType !== null) { @@ -13,12 +47,31 @@ abstract class Renderer echo $this->render($arEvents); } + /** + * Do something when there are no events to render + * + * @return void + */ public function handleStopOnEmpty() { } + /** + * Display the events in some way + * + * @param array $arEvents Events to display + * + * @return string Event representation + */ abstract public function render($arEvents); + /** + * Converts the given date string according to the user's locale setting. + * + * @param string $dateStr Date in format YYYY-MM-DD + * + * @return string Formatted date + */ protected function getLocalDate($dateStr) { if ($dateStr{0} != '?') { -- cgit v1.2.3