本文整理汇总了PHP中Jot::add方法的典型用法代码示例。如果您正苦于以下问题:PHP Jot::add方法的具体用法?PHP Jot::add怎么用?PHP Jot::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Jot
的用法示例。
在下文中一共展示了Jot::add方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
if (!isset($attr['class'])) {
$attr['class'] = array();
}
$attr['class'] = array_merge(array('text-' . $kind), (array) $attr['class']);
return Cell::unit('a', $text, $attr, $indent);
});
// File uploader
Jot::add('uploader', function ($action, $accept = null, $fields = array()) {
$speak = Config::speak();
$html = Cell::begin('form', array('class' => array('form-ignite', 'form-upload'), 'action' => Converter::url($action), 'method' => 'post', 'enctype' => 'multipart/form-data')) . NL;
$html .= Form::hidden('token', Guardian::token(), array(), 1) . NL;
foreach ($fields as $name => $value) {
$html .= Form::hidden($name, $value, array(), 1) . NL;
}
$html .= Cell::begin('span', array('class' => array('input-outer', 'btn', 'btn-default')), 1) . NL;
$html .= Cell::unit('span', Jot::icon('folder-open') . ' ' . $speak->manager->placeholder_file, array(), 2) . NL;
$html .= Form::file('file', array('title' => $speak->manager->placeholder_file, 'data' => array('icon-ready' => 'fa fa-check', 'icon-error' => 'fa fa-times', 'accepted-extensions' => $accept)), 2) . NL;
$html .= Cell::end() . ' ' . Jot::button('action:cloud-upload', $speak->upload) . NL;
$html .= Cell::end();
return $html;
});
// File finder
Jot::add('finder', function ($action, $name = 'q', $fields = array()) {
$html = Cell::begin('form', array('class' => 'form-ignite form-find', 'action' => Converter::url($action), 'method' => 'get')) . NL;
foreach ($fields as $key => $value) {
$html .= Form::hidden($key, $value) . NL;
}
$html .= Form::text($name, Request::get($name, null), null, array(), 1) . ' ' . Jot::button('action:search', Config::speak('find')) . NL;
$html .= Cell::end();
return $html;
});