Home
last modified time | relevance | path

Searched refs:tpl (Results 51 – 75 of 201) sorted by path

123456789

/plugin/bez/tpl/
H A Dthread_report.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
4 <?php if ($tpl->param('id') != ''): ?>
5 <?php $url = $tpl->url('thread_report', 'action', 'update', 'id', $tpl->param('id')) ?>
7 <?php $url = $tpl->url('thread_report', 'action', 'add') ?>
10 <?php if ($tpl->param('id') != ''): ?>
11 <?php $type = $tpl->get('thread')->type ?>
13 <?php $type = $tpl->param('type') ?>
27 <?php if ($tpl->param('id') != ''): ?>
28 <?php $class = 'pr' . $tpl
[all...]
H A Dthreads.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
3 <?php if (!$tpl->get('no_filters', false)): ?>
5 <?php if ($tpl->factory('thread')->permission() >= BEZ_TABLE_PERMISSION_INSERT): ?>
6 <a href="<?php echo $tpl->url('thread_report', 'type', $tpl->action() == 'projects' ? 'project' : 'issue') ?>" class="bez_start_button" id="bez_report_issue_button">
7 <?php echo $tpl->getLang('report_' . $tpl->action()) ?>
14 <form action="<?php echo $tpl->url($tpl->action()) ?>" method="post">
16 <label><?php echo $tpl
[all...]
H A Dtypes.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <form action="<?php echo $tpl->url('types') ?>" method="POST">
8 <?php foreach ($tpl->get('labels') as $label): ?>
10 <?php if ( in_array($tpl->param('action'), array('edit', 'update')) &&
11 $tpl->param('id') == $label->id): ?>
14 <input name="name" value="<?php echo $tpl->value('name') ?>" />
17 <button name="action" value="update"><?php echo $tpl->getLang('save') ?></button>
18 <a href="<?php echo $tpl->url('types') ?>">
19 <?php echo $tpl->getLang('cancel') ?>
25 <a href="<?php echo $tpl
[all...]
H A Dunsubscribe.php3 Zawsze możesz ponownie włączyć powiadomienia na <a href="<?php echo $tpl->url('start') ?>">stronie domowej</a>.
/plugin/blogtng/action/
H A Dnew.php85 $tpl = pageTemplate($id);
86 if(!$tpl) $tpl = io_readFile(DOKU_PLUGIN . 'blogtng/tpl/newentry.txt');
91 return str_replace(array_keys($replace), array_values($replace), $tpl);
/plugin/blogtng/entities/
H A DComment.php85 $tpl = $this->tools->getTplFile($name,'comments');
86 if($tpl === false){
93 include($tpl);
/plugin/blogtng/helper/
H A Dcomments.php639 … public function tpl_recentcomments($tpl='default',$num=5,$blogs=array('default'),$types=array()){ argument
641 $tpl = helper_plugin_blogtng_tools::getTplFile($tpl, 'recentcomments');
642 if($tpl === false){
679 include($tpl);
H A Dentry.php447 $tpl = helper_plugin_blogtng_tools::getTplFile($name, $type);
448 if($tpl !== false) {
451 include($tpl);
703 * @param string $tpl a template specifing the link text. May contain placeholders
710 public function tpl_previouslink($tpl, $id=false, $return=false) { argument
711 $out = $this->_navi_link($tpl, 'prev', $id);
724 * @param string $tpl a template specifing the link text. May contain placeholders
731 public function tpl_nextlink($tpl, $id=false, $return=false) { argument
732 $out = $this->_navi_link($tpl, 'next', $id);
1229 * @param string $tpl a template specifing the link text. May contain placeholders
[all …]
H A Dtools.php68 * @param string $tpl
72 static public function getTplFile($tpl, $type) { argument
75 $fname = DOKU_PLUGIN . "blogtng/tpl/$tpl$sep$type.php";
83 msg("blogtng plugin: template file $type for template $tpl does not exist!", -1);
/plugin/blogtng/renderer/
H A Dcomment.php14 var $tpl=''; variable in renderer_plugin_blogtng_comment
/plugin/bureaucracy-au/helper/
H A Dactiontemplate.php26 list($tpl, $this->pagename, $sep) = $argv;
44 $tpl = $this->getActionTargetpages($tpl);
120 * @param string $tpl template name as given in form
123 protected function getActionTargetpages($tpl) { argument
129 if ($tpl == '_') {
134 } elseif ($tpl !== '!') {
135 $tpl = $this->replace($tpl);
138 if(substr($tpl, -1) == ':') {
139 $tpl = $tpl.'xxx'; // append a fake page name
141 $tpl = substr($tpl, 0, -3); // cut off fake page name again
[all …]
H A Dfield.php22 protected $tpl; variable in helper_plugin_bureaucracyau_field
159 $form->addElement($this->_parse_tpl($this->tpl, $params));
364 * @param string|array $tpl The template as string or array
369 protected function _parse_tpl($tpl, $params) { argument
372 $is_simple = !is_array($tpl);
373 if ($is_simple) $tpl = array($tpl);
375 foreach ($tpl as &$val) {
407 return $is_simple ? $tpl[0] : $tpl;
H A Dfielddate.php26 …$this->tpl = form_makeTextField('@@NAME@@', '@@VALUE@@', '@@DISPLAY@@', '@@ID@@', '@@CLASS@@', $at…
H A Dfieldfile.php33 $this->tpl = form_makeFileField('@@NAME@@', '@@DISPLAY@@', '@@ID@@', '@@CLASS@@', $attr);
36 $this->tpl['class'] .= ' required';
H A Dfieldpassword.php23 … $this->tpl = form_makePasswordField('@@NAME@@', '@@DISPLAY@@', '@@ID@@', '@@CLASS@@', $attr);
26 $this->tpl['class'] .= ' required';
H A Dfieldstatic.php8 protected $tpl = '<p>@@DISPLAY@@</p>'; variable in helper_plugin_bureaucracyau_fieldstatic
H A Dfieldsubmit.php47 … $this->tpl = form_makeButton('submit','', '@@DISPLAY|' . $this->getLang('submit') . '@@', $attr);
H A Dfieldtextarea.php20 protected $tpl = variable in helper_plugin_bureaucracyau_fieldtextarea
H A Dfieldtextbox.php26 …$this->tpl = form_makeTextField('@@NAME@@', '@@VALUE@@', '@@DISPLAY@@', '@@ID@@', '@@CLASS@@', $at…
28 $this->tpl['class'] .= ' '.$this->opt['class'];
31 $this->tpl['class'] .= ' required';
H A Dfieldtime.php26 …$this->tpl = form_makeTextField('@@NAME@@', '@@VALUE@@', '@@DISPLAY@@', '@@ID@@', '@@CLASS@@', $at…
H A Dfielduser.php19 $this->tpl['class'] .= ' userpicker';
H A Dfieldusers.php19 $this->tpl['class'] .= ' userspicker';
H A Dfieldwiki.php9 protected $tpl = '<p>@@LABEL@@</p>'; variable in helper_plugin_bureaucracyau_fieldwiki
50 * @param string|array $tpl The template as string
55 protected function _parse_tpl($tpl, $params) { argument
57 $tpl = p_render('xhtml', $ins, $byref_ignore);
58 return '<p>'.$tpl.'</p>';
H A Dfieldyesno.php92 $this->tpl = '<label class="@@CLASS@@" for="'.$id.'"><span>@@DISPLAY@@</span>'.
/plugin/bureaucracy/helper/
H A Dactiontemplate.php58 $tpl = $this->getActionTargetpages($tpl);
155 return $tpl;
170 if ($tpl == '_') {
177 } elseif ($tpl !== '!') {
178 $tpl = $this->replace($tpl);
183 $tpl = $tpl.'xxx'; // append a fake page name
184 $tpl = $resolver->resolveId($tpl);
185 $tpl = substr($tpl, 0, -3); // cut off fake page name again
187 $tpl = $resolver->resolveId($tpl);
233 return $tpl;
[all …]

123456789