Home
last modified time | relevance | path

Searched refs:format (Results 176 – 200 of 1384) sorted by relevance

12345678910>>...56

/plugin/tag/syntax/
H A Dtagpage.php66 * @param string $format Renderer mode (supported modes: xhtml)
71 function render($format, Doku_Renderer $renderer, $data) { argument
74 if($format == "xhtml") {
/plugin/davcal/
H A Dscript.js18 Date.parseDate = function( input, format ){ argument
19 return moment(input,format).toDate();
21 Date.prototype.dateFormat = function( format ){ argument
22 return moment(this).format(format);
657 jQuery('#dw_davcal__eventfromtime_edit').val(calEvent.start.format('HH:mm'));
691 jQuery('#dw_davcal__eventto_edit').val(endEvent.format('YYYY-MM-DD'));
692 jQuery('#dw_davcal__eventotime_edit').val(endEvent.format('HH:mm'));
705 jQuery('#dw_davcal__eventfrom_edit').datetimepicker({format:'YYYY-MM-DD',
711 jQuery('#dw_davcal__eventfromtime_edit').datetimepicker({format:'HH:mm',
717 jQuery('#dw_davcal__eventto_edit').datetimepicker({format:'YYYY-MM-DD',
[all …]
/plugin/directorylist/
H A Dstyle.css6 src: url('font/genericons-regular-webfont.eot?#iefix') format('embedded-opentype'),
7 url('font/genericons-regular-webfont.woff') format('woff'),
8 url('font/genericons-regular-webfont.ttf') format('truetype'),
9 url('font/genericons-regular-webfont.svg#genericonsregular') format('svg');
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1Entity.php210 public function setFormat(GoogleCloudDataplexV1StorageFormat $format) argument
212 $this->format = $format;
219 return $this->format;
/plugin/combo/syntax/
H A Dcodemarkdown.php168 * @param string $format
176 function render($format, Doku_Renderer $renderer, $data) argument
180 if ($format == 'xhtml') {
205 } else if ($format == 'code') {
H A Dxmlblocktag.php150 * @param string $format
158 function render($format, Doku_Renderer $renderer, $data): bool argument
161 return XmlTagProcessing::renderStatic($format, $renderer, $data, $this);
H A Dedit.php33 const FORMAT = "format";
109 * @param string $format
117 function render($format, Doku_Renderer $renderer, $data): bool argument
122 * The rendering is used only when exporting to another format
125 if ($format !== "xhtml") {
H A Dmath.php101 * @param string $format
109 function render($format, Doku_Renderer $renderer, $data) argument
113 switch ($format) {
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php186 …$this->assertEquals('2014-04-02T18:37:00-04:00', $dt->format('c'), "For some reason this one faile…
215 $year = $current->format('Y');
217 $this->assertEquals($year . '0407', $dt->format('Ymd'));
238 $year = $current->format('Y');
240 $this->assertEquals($year . '0407', $dt->format('Ymd'));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DReport.php45 public $format; variable in Google\\Service\\Dfareporting\\Report
186 public function setFormat($format) argument
188 $this->format = $format;
195 return $this->format;
/plugin/pagetitle/syntax/
H A Dyouarehere.php61 public function render($format, Doku_Renderer $renderer, $data) argument
71 if ($format == 'metadata') {
74 } elseif ($format == 'xhtml') {
/plugin/ruby/
H A Dsyntax.php46 function render($format, Doku_Renderer $renderer, $data) { argument
59 if ($format == 'xhtml') {
68 if ($format == 'metadata') {
/plugin/dw2pdf/
H A DDokuPDF.class.php39 $format = $pagesize;
41 $format .= '-L';
57 'format' => $format,
/plugin/pagestat/
H A Dscript.js7 String.prototype.format = function () { method in String
342 var u_pre = "user:{0}:".format(JSINFO['user']);
421 return "<wrap vo>{0}</wrap>".format(word);
525 </div>'.format(medit.nclass,height,width,display);
576 rstr.push(" {0} ({1})".format(key, rw_ob[key]));
606 var out_log=" headrt ={0}".format(headrt.length);
867 out_str+="The wordlist location [[{0}]]\n".format(wordlist_id);
1066 var tmp="\\b{0}\\b.+\\b{1}\\b".format(w_from, w_to);
1801 '.format(params_obj.command,winid,ori_txt);
1917 var tmp="\\b{0}\\b.+\\b{1}\\b".format(s_from, s_to);
[all …]
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Dintl.rst17 Use the ``localizeddate`` filter to format dates into a localized string
24 The ``localizeddate`` filter accepts strings (it must be in a format supported
35 * ``date_format``: The date format. Choose one of these formats:
43 * ``time_format``: The time format. Same formats possible as above.
45 * ``locale``: The locale used for the format. If ``NULL`` is given, Twig will
50 * ``format``: Optional pattern to use when formatting or parsing. Possible
77 Use the ``localizednumber`` filter to format numbers into a localized string
92 * ``style``: Optional number format (default: 'decimal'). Choose one of these formats:
110 * ``locale``: The locale used for the format. If ``NULL`` is given, Twig will
116 Use the ``localizedcurrency`` filter to format a currency value into a localized string.
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DWeightedAvg.php87 * Set the format for this aggregation.
89 * @param string $format
93 public function setFormat($format) argument
95 return $this->setParam('format', $format);
H A DDateHistogram.php98 * Set the format for returned bucket key_as_string values.
100 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-daterange-aggregation.html#date-format-pattern
102 * @param string $format see link for formatting options
106 public function setFormat(string $format): self argument
108 return $this->setParam('format', $format);
/plugin/blogtng/helper/
H A Dtools.php23 * @param string $format the format of the id to generate
27 static public function mkpostid($format,$title){ argument
35 $out = $format;
/plugin/data-graph/
H A Dsyntax.php57 function render($format, Doku_Renderer $R, $kv) { argument
58 if($format != 'xhtml') return false;
60 $format = intval($kv["digits"]);
193 … "| ". number_format($line["s"], $format) . $metrics ." | " . number_format($line["s"]/$l…
/plugin/datagraph/
H A Dsyntax.php57 function render($format, Doku_Renderer $R, $kv) { argument
58 if($format != 'xhtml') return false;
60 $format = intval($kv["digits"]);
193 … "| ". number_format($line["s"], $format) . $metrics ." | " . number_format($line["s"]/$l…
/plugin/redirect2/
H A Dsyntax.php75 public function render($format, Doku_Renderer $renderer, $data) { argument
76 if ($format == 'xhtml') {
81 if ($format == 'metadata') {
/plugin/imagecarousel/
H A Dall.less34format('embedded-opentype'), url('./vendor/slick/fonts/slick.woff') format('woff'), url('./vendor/…
/plugin/structgantt/meta/
H A DGantt.php284 if ($day->format($this->interval['long']) == $today->format($this->interval['long'])) {
382 if ($this->skipWeekends && (int)$date->format('N') >= 6) {
412 if ($this->skipWeekends && (int)$date->format('N') >= 6) {
428 * Wrapper around DateTime->format() to implement our own placeholders
436 $format = $this->interval[$formatname];
437 $label = $date->format($format);
444 'Q' . ceil($date->format('n') / 3),
445 substr($date->format('
[all...]
/plugin/dev/skel/
H A Drenderer_xhtml.php15 public function canRender($format) argument
17 if ($format == 'xhtml') {
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DContext.php29 private $format; variable in JMS\\Serializer\\Context
61 …public function initialize(string $format, VisitorInterface $visitor, GraphNavigatorInterface $nav… argument
67 $this->format = $format;
193 return $this->format;

12345678910>>...56