本文整理匯總了PHP中TTable::AddBoolColumn方法的典型用法代碼示例。如果您正苦於以下問題:PHP TTable::AddBoolColumn方法的具體用法?PHP TTable::AddBoolColumn怎麽用?PHP TTable::AddBoolColumn使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TTable
的用法示例。
在下文中一共展示了TTable::AddBoolColumn方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: buildForm
function buildForm()
{
$this->buildFormCommonItems();
$this->addElement('header', 'header', 'Рентгенологические исследования');
$vDB = GetDB();
$vContainer =& $this->controller->container();
$vDefaults =& $vContainer['defaults'];
$vCaseID = @$vDefaults['BaseInfo']['id'];
$vTab = new TTable('emst_rg', 'id, date, area, done, description', $vDB->CondEqual('case_id', $vCaseID), 'date, area, done, id', 'id');
$vTab->AddDateColumn('date', 'Дата');
$vTab->AddColumn('area', 'Область исследования');
$vTab->AddBoolColumn('done', 'Выполнено');
$vTab->AddTextColumn('description', 'Описание');
$vTab->AddRowAction('изменить', 'rg_dir_edit.html?id=');
$vTab->AddTableAction('Новое направление на RG', 'rg_dir_edit.html?caseid=' . $vCaseID);
$vHTML = $vTab->ProduceHTML($vDB, @$_GET['PageIdx'] + 0, 20);
$this->addElement('static', 'table', 'table', $vHTML);
$this->addElement('submit', 'submit', 'OK', array('class' => 'bigred'));
$this->setDefaultAction('submit');
if ($this->controller->isValid()) {
ActionProcess::save($this->controller);
}
}