當前位置: 首頁>>代碼示例>>PHP>>正文


PHP field::build_field方法代碼示例

本文整理匯總了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;
 }
開發者ID:com-itzcy,項目名稱:hdjob,代碼行數:37,代碼來源:APP_GROUP_web.php

示例2: updateStructTpl

 /**
  * 更新修改和發布時的模板
  * 路徑: PATH_ROOT . '/' . APP_GROUP . '/caches/model/model_';
  * @param type $model 模型ID
  */
 function updateStructTpl($model)
 {
     $field = new field($model);
     $field->build_field();
 }
開發者ID:com-itzcy,項目名稱:hdjob,代碼行數:10,代碼來源:dataModelControl.php


注:本文中的field::build_field方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。