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


PHP table::setFormFields方法代碼示例

本文整理匯總了PHP中table::setFormFields方法的典型用法代碼示例。如果您正苦於以下問題:PHP table::setFormFields方法的具體用法?PHP table::setFormFields怎麽用?PHP table::setFormFields使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在table的用法示例。


在下文中一共展示了table::setFormFields方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct()
 {
     parent::__construct('buyer', array('id_buyer' => 'i', 'surname' => 's', 'name' => 's', 'middlename' => 's', 'address' => 's', 'number' => 's', 'hours' => 's', 'login' => 's', 'password' => 's'));
     parent::setFormFields(array('surname' => array('text', 'Фамилия'), 'name' => array('text', 'Имя'), 'middlename' => array('text', 'Отчество'), 'address' => array('text', 'Адрес'), 'number' => array('text', 'Телефон'), 'hours' => array('text', 'Желаемое время доставки'), 'login' => array('text', 'Логин'), 'password' => array('password', 'Пароль')));
     //'id_hours' => array('radio', 'C 6 00 до 12 00  ','C 12 00 до 18 00  ','C 18 00 до 21 00  ')));
     parent::setValidationRules(array('surname' => '/[А-Яа-яЁё]{1,20}/', 'name' => '/[А-Яа-яЁё]{1,20}/', 'middlename' => '/[А-Яа-яЁё]{1,20}/', 'address' => '/[А-Яа-яЁё]{1,20}/', 'number' => '/\\b[0-9]{1,20}\\b/', 'hours' => '/\\b[0-9]{1,20}\\b/', 'login' => '/[A-Za-z]{1,20}/', 'password' => '/[A-Za-z]{1,20}/'));
 }
開發者ID:stanhelen87,項目名稱:OOOO,代碼行數:7,代碼來源:table_buyer.php

示例2: __construct

 public function __construct()
 {
     parent::__construct('inkind', array('inkind' => 's', 'kindparent' => 's', 'id_inkind' => 'i', 'id_parent' => 'i'));
     parent::setDefaultOrder('id_parent asc');
     parent::setTableSelect('inkind natural join kindparent');
     parent::setFormFields(array('inkind' => array('text', 'Название вида')));
 }
開發者ID:stanhelen87,項目名稱:OOOO,代碼行數:7,代碼來源:table_kindparent.php

示例3: __construct

 public function __construct()
 {
     parent::__construct('buyer', array('login' => 's', 'password' => 's'));
     parent::setFormFields(array('login' => array('text', 'Логин'), 'password' => array('password', 'Пароль')));
     //'id_hours' => array('radio', 'C 6 00 до 12 00  ','C 12 00 до 18 00  ','C 18 00 до 21 00  ')));
     parent::setValidationRules(array('login' => '/[A-Za-z]{1,20}/', 'password' => '/[A-Za-z]{1,20}/'));
 }
開發者ID:stanhelen87,項目名稱:OOOO,代碼行數:7,代碼來源:table_buyerin.php

示例4: __construct

 public function __construct()
 {
     parent::__construct('buyer', array('id_buyer' => 'i', 'hours' => 's', 'address' => 's'));
     parent::setTableSelect('buyer natural join product');
     parent::setFormFields(array('id_buyer' => array('', ''), 'hours' => array('text', 'Желаемое время'), 'address' => array('text', 'Адрес')));
     //'id_hours' => array('radio', 'C 6 00 до 12 00  ','C 12 00 до 18 00  ','C 18 00 до 21 00  ')));
     parent::setValidationRules(array('hours' => '/\\b[0-9]{1,20}\\b/', 'address' => '/[А-Яа-яЁё]{1,20}/'));
 }
開發者ID:stanhelen87,項目名稱:OOOO,代碼行數:8,代碼來源:table_dostavka.php

示例5: __construct

 public function __construct()
 {
     parent::__construct('user', array('id_user' => 'i', 'login' => 's', 'password' => 's', 'status' => 's'));
     parent::setDefaultOrder('login');
     parent::setFormFields(array('login' => array('text', 'Логин'), 'password' => array('password', 'Пароль'), 'status' => array('text', 'Статус')));
 }
開發者ID:stanhelen87,項目名稱:OOOO,代碼行數:6,代碼來源:table_user.php


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