本文整理汇总了PHP中field::text方法的典型用法代码示例。如果您正苦于以下问题:PHP field::text方法的具体用法?PHP field::text怎么用?PHP field::text使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类field
的用法示例。
在下文中一共展示了field::text方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: site_keywords
function site_keywords($attrs)
{
//$html[] = html::script('$common/js/zotop.keywords.js');
$html[] = '<div class="field-wrapper clearfix">';
$html[] = ' ' . field::text($attrs);
$html[] = ' <span class="field-handle">';
$html[] = ' <a class="setkeywords" style="display:inline-block;" valueto="' . $attrs['name'] . '" title="' . zotop::t('常用关键词') . '"><span class="zotop-icon zotop-icon-keywords"></span></a>';
$html[] = ' </span>';
$html[] = '</div>';
return implode("\n", $html);
}
示例2: image
/**
* 图片上传输入框
*
* @param $attrs array 控件参数
* @return string 控件代码
*/
public static function image($attrs)
{
$attrs['handle'] = empty($attrs['handle']) ? zotop::url('zotop/upload/image') : $attrs['handle'];
$html[] = html::script(url::common() . '/js/zotop.upload.js');
$html[] = '<div class="field-inner inline-block">';
$html[] = ' ' . field::text($attrs);
$html[] = ' ' . html::input(array('type' => 'button', 'class' => 'upload-image', 'title' => zotop::t('上传图片')));
$html[] = '</div>';
return implode("\n", $html);
}
示例3: image
/**
* 图片上传输入框
*
* @param $attrs array 控件参数
* @return string 控件代码
*/
public static function image($attrs)
{
$html[] = '<div class="field-inner">';
$html[] = field::text($attrs);
$html[] = html::input(array('type' => 'button', 'class' => 'upload-image', 'for' => $attrs['name'], 'value' => t('上传图片'), 'title' => t('上传图片')));
$html[] = '</div>';
return implode("\n", $html);
}
示例4: date
public static function date($attrs)
{
$attrs = array_merge((array) $attrs, array('onfocus' => 'WdatePicker({dateFmt:"yyyy-MM-dd",isShowClear:false,readOnly:true})'));
$html[] = html::script('$common/js/datepicker/WdatePicker.js');
$html[] = field::text($attrs);
return implode("\n", $html);
}
示例5: field_template
function field_template($attrs)
{
$html[] = field::text($attrs);
$html[] = '<a class="dialog" href="' . zotop::url('system/template/select/' . $attrs['name']) . '" title="选择模板"><span class="zotop-icon zotop-icon-template"></span></a>';
return implode("\n", $html);
}