Home
last modified time | relevance | path

Searched refs:format (Results 101 – 125 of 1384) sorted by last modified time

12345678910>>...56

/plugin/combo/syntax/
H A Dheadingatx.php112 * @param string $format
120 function render($format, Doku_Renderer $renderer, $data): bool argument
128 if ($format == 'xhtml') {
153 } else if ($format == renderer_plugin_combo_analytics::RENDERER_FORMAT) {
160 } else if ($format == "metadata") {
H A Dheadingwiki.php175 public function render($format, Doku_Renderer $renderer, $data): bool argument
178 switch ($format) {
H A Dhighlightmd.php126 public function render($format, Doku_Renderer $renderer, $data): bool argument
129 switch ($format) {
H A Dhighlightwiki.php163 public function render($format, $renderer, $data): bool argument
166 switch ($format) {
H A Diterator.php327 * @param string $format
335 function render($format, Doku_Renderer $renderer, $data): bool argument
337 if ($format === "xhtml") {
H A Diteratordata.php159 * @param string $format
167 function render($format, Doku_Renderer $renderer, $data) argument
H A Ditext.php117 * @param string $format
125 function render($format, Doku_Renderer $renderer, $data): bool argument
127 if ($format == 'xhtml') {
H A Dlabel.php160 * @param string $format
168 function render($format, Doku_Renderer $renderer, $data): bool argument
171 if ($format == 'xhtml') {
H A Dnote.php138 * @param string $format
146 function render($format, Doku_Renderer $renderer, $data) argument
148 if ($format == 'xhtml') {
H A Dpara.php176 * @param string $format
184 function render($format, Doku_Renderer $renderer, $data): bool argument
187 switch ($format) {
H A Dpreformatted.php189 * @param string $format
197 function render($format, Doku_Renderer $renderer, $data) argument
199 if ($format == "xhtml") {
H A Drailroad.php155 * @param string $format
163 function render($format, Doku_Renderer $renderer, $data) argument
167 if ($format == 'xhtml') {
H A Drelated.php127 * @param string $format
135 function render($format, Doku_Renderer $renderer, $data): bool argument
139 if ($format == 'xhtml') {
H A Dtoc.php120 * @param string $format
128 function render($format, Doku_Renderer $renderer, $data): bool argument
131 if ($format == 'xhtml') {
H A Dxmlinlineemptytag.php73 * @param string $format
79 function render($format, Doku_Renderer $renderer, $data): bool argument
82 return XmlTagProcessing::renderStaticEmptyTag($format, $renderer, $data, $this);
/plugin/combo/ComboStrap/
H A DMarkupDynamicRender.php27 * @var string the format (xhtml, ...)
29 private string $format; variable in ComboStrap\\MarkupDynamicRender
40 public function __construct($format) argument
42 $this->format = $format;
43 $renderer = p_get_renderer($format);
45 throw new ExceptionNotFound("No renderer was found for the format $format");
59 public static function create($format): MarkupDynamicRender argument
69 return new MarkupDynamicRender($format);
[all...]
H A DMarkupPath.php1094 * ToStoreValue to get the string format of date/boolean in the {@link PipelineUtility}
1116 return $this->getPublishedTime() !== null ? $this->getPublishedTime()->format(Iso8601Date::getFormat()) : null;
H A DDateTag.php15 public const FORMAT_ATTRIBUTE = "format";
26 * @param string $format
31 public static function formatDateString(string $date, string $format = DateTag::DEFAULT_FORMAT, string $lang = null): string argument
34 // To format dates in other languages, you should use the setlocale() and strftime() functions instead of date().
66 // throw new ExceptionBadSyntax("The language ($lang) / locale ($derivedLocale) is not available as locale on the server. You can't then format the value ($date) in this language.");
72 $formatted = strftime($format, $timeStamp);
77 throw new ExceptionBadSyntax("Unable to format the date ($date) with the format ($format) and lang ($lang)");
102 * The format
[all...]
/plugin/combo/action/
H A Dmetafacebook.php115 $facebookMeta["article:published_time"] = $page->getPublishedElseCreationTime()->format(DATE_ISO8601);
123 $facebookMeta["article:modified_time"] = $modifiedTime->format(DATE_ISO8601);
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php289 $currentDate = $currentDate->format('Y-m-d H:i');
292 $currentDate = DateTime::createFromFormat('U', $currentTime->format('U'));
294 $currentDate = $currentDate->format('Y-m-d H:i');
298 $currentTime->setTime($currentTime->format('H'), $currentTime->format('i'), 0);
299 $currentDate = $currentTime->format('Y-m-d H:i');
327 $currentDate = DateTime::createFromFormat('U', $currentTime->format('U'));
334 $currentDate->setTime($currentDate->format('H'), $currentDate->format('i'), 0);
H A DDayOfMonthField.php40 $currentWeekday = (int) $target->format('N');
46 $lastDayOfMonth = $target->format('t');
52 if ($target->format('N') < 6 && $target->format('m') == $currentMonth) {
66 $fieldValue = $date->format('d');
70 return $fieldValue == $date->format('t');
78 return $date->format('j') == self::getNearestWeekday(
79 $date->format('Y'),
80 $date->format('m'),
82 )->format('
[all...]
H A DDayOfWeekField.php33 $currentYear = $date->format('Y');
34 $currentMonth = $date->format('m');
35 $lastDayOfMonth = $date->format('t');
42 while ($tdate->format('w') != $weekday) {
49 return $date->format('j') == $lastDayOfMonth;
56 // 0 and 7 are both Sunday, however 7 matches date('N') format ISO-8601
69 if ($date->format('N') != $weekday) {
78 if ($tdate->format('N') == $weekday) {
86 return $date->format('j') == $currentDay;
101 $format
[all...]
H A DHoursField.php15 return $this->isSatisfied($date->format('H'), $value);
33 $date->setTime($date->format('H'), $invert ? 59 : 0);
43 $current_hour = $date->format('H');
56 if ((!$invert && $date->format('H') >= $hour) || ($invert && $date->format('H') <= $hour)) {
H A DMinutesField.php15 return $this->isSatisfied($date->format('i'), $value);
35 $current_minute = $date->format('i');
49 $date->setTime($date->format('H'), $invert ? 59 : 0);
52 $date->setTime($date->format('H'), $minutes[$position]);
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php553 $format = $m[2];
556 if ($format) {
563 return $dt->format($format);

12345678910>>...56