本文整理匯總了PHP中field::build_field方法的典型用法代碼示例。如果您正苦於以下問題:PHP field::build_field方法的具體用法?PHP field::build_field怎麽用?PHP field::build_field使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類field
的用法示例。
在下文中一共展示了field::build_field方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _hd_field
public function _hd_field($attr, $content)
{
if (!isset($attr['model'])) {
error('hd_field標簽必須設置model屬性。即模型表ID,如不清楚使用方式。請查看係統部署手冊');
}
$model = intval($attr['model']);
$type = 'add';
//edit 編輯or發布
if (isset($attr['type'])) {
$type = $attr['type'];
}
$db = M('model');
$mdata = $db->find($model);
$upload = '';
$validate = '';
if ($mdata['upload']) {
$upload = 'enctype="multipart/form-data"';
}
if ($mdata['validate']) {
$validate = 'validate="true"';
}
$tpl = '{include file="' . PATH_ROOT . '/caches/model/model_' . $model . '_' . $type . '.html" /}';
if (!file_exists(PATH_ROOT . '/caches/model/model_' . $model . '_' . $type . '.html')) {
$field = new field($model);
$field->build_field();
header('Location:' . __URL__);
}
/*$tpl = '<?php include \'./caches/model/model_' . $model . '_' . $type . '.html\';?>';*/
$str = '<form ' . $validate . ' method="post" action="' . __METH__ . '" ' . $upload . '>';
if ($type == 'edit') {
$str = '<?php if(is_array($field)){extract($field);}?><form ' . $validate . ' method="post" action="' . __METH__ . '" ' . $upload . ' />';
}
$str .= $tpl;
$str .= $content;
$str .= '</form>';
return $str;
}
示例2: updateStructTpl
/**
* 更新修改和發布時的模板
* 路徑: PATH_ROOT . '/' . APP_GROUP . '/caches/model/model_';
* @param type $model 模型ID
*/
function updateStructTpl($model)
{
$field = new field($model);
$field->build_field();
}