本文整理汇总了PHP中getDefVal函数的典型用法代码示例。如果您正苦于以下问题:PHP getDefVal函数的具体用法?PHP getDefVal怎么用?PHP getDefVal使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getDefVal函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->first_name = new TableColumn('varchar', '30', true, '', 'MUL');
$this->last_name = new TableColumn('varchar', '30', true, '', '');
$this->dob = new TableColumn('date', '0', false, '', '');
$this->gender = new TableColumn('enum', '0', false, '', '', array('Male', 'Female'));
$this->religion = new TableColumn('varchar', '30', false, '', '');
$this->phone = new TableColumn('varchar', '11', true, '', '');
$this->cnic = new TableColumn('varchar', '13', false, '', '');
$this->city = new TableColumn('varchar', '25', false, '', '');
$this->tehsil = new TableColumn('varchar', '25', false, '', '');
$this->district = new TableColumn('varchar', '25', false, '', '');
$this->address = new TableColumn('text', '0', false, '', '');
$this->father_id = new TableColumn('int', '11', false, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'persons';
}
}
parent::__construct($id);
}
示例2: __construct
function __construct()
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->person_id = new TableColumn('int', '11', true, '', '');
$this->guardian_id = new TableColumn('int', '11', true, '', '');
$this->class_id = new TableColumn('int', '11', true, '', '');
$this->section = new TableColumn('int', '11', false, '', '');
$this->roll_num = new TableColumn('int', '11', true, '', '');
$this->subj_combination = new TableColumn('int', '11', true, '', '');
$this->status = new TableColumn('enum', '0', true, '', '', array('enrolled', 'expelled', 'left'));
$this->annual_dues = new TableColumn('int', '11', true, '', '');
$this->start_date = new TableColumn('date', '0', true, '', '');
$this->end_date = new TableColumn('date', '0', true, '', '');
$this->admission_date = new TableColumn('date', '0', true, '', '');
$this->last_date_for_fee_submission = new TableColumn('int', '2', true, '', '');
$this->comments = new TableColumn('text', '0', false, '', '');
// get default value
foreach ($this as $field => $info) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'Student';
}
}
示例3: __construct
function __construct($id = null)
{
$this->user_roles_id = new TableColumn('int', '11', true, '', '');
$this->pages_id = new TableColumn('int', '11', true, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'user_roles__pages';
}
}
parent::__construct($id);
}
示例4: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->title = new TableColumn('varchar', '30', true, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'exams';
}
}
parent::__construct($id);
}
示例5: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->config_classes_id = new TableColumn('int', '11', true, '', '');
$this->subject_combinations_id = new TableColumn('int', '11', true, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'config_classes__subject_combinations';
}
}
parent::__construct($id);
}
示例6: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->employee_id = new TableColumn('int', '11', true, '', '');
$this->date = new TableColumn('date', '0', true, '', '');
$this->status = new TableColumn('enum', '0', true, '', '', array('Present', 'Absent', 'Leave'));
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'emplyee_attendance_records';
}
}
parent::__construct($id);
}
示例7: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->class_attendance_record_id = new TableColumn('int', '11', true, '', '');
$this->student_id = new TableColumn('int', '11', true, '', '');
$this->lectures_attended = new TableColumn('int', '1', false, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'student_attendance_records';
}
}
parent::__construct($id);
}
示例8: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->action = new TableColumn('text', '0', true, '', '');
$this->user_id = new TableColumn('int', '11', true, '', '');
$this->time = new TableColumn('timestamp', '0', false, 'CURRENT_TIMESTAMP', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'log_messages';
}
}
parent::__construct($id);
}
示例9: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->advance_record_id = new TableColumn('int', '11', true, '', '');
$this->date = new TableColumn('date', '0', true, '', '');
$this->amount = new TableColumn('int', '11', true, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'advance_return_records';
}
}
parent::__construct($id);
}
示例10: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->category = new TableColumn('varchar', '40', true, '', '');
$this->depreciation = new TableColumn('int', '11', true, '', '');
$this->depreciation_schedule = new TableColumn('int', '11', true, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'config_asset_categories';
}
}
parent::__construct($id);
}
示例11: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->key_name = new TableColumn('varchar', '100', true, '', '');
$this->value = new TableColumn('text', '0', true, '', '');
$this->comments = new TableColumn('text', '0', false, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'default_values';
}
}
parent::__construct($id);
}
示例12: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->loan_id = new TableColumn('int', '11', true, '', '');
$this->interest_rate = new TableColumn('int', '11', true, '', '');
$this->repayment_schedule = new TableColumn('int', '11', true, '', '');
$this->comments = new TableColumn('text', '0', false, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'loan_interest_rates';
}
}
parent::__construct($id);
}
示例13: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->test_id = new TableColumn('int', '11', true, '', '');
$this->student_id = new TableColumn('int', '11', true, '', '');
$this->obtained_marks = new TableColumn('varchar', '3', false, '0', '');
$this->comments = new TableColumn('text', '0', false, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'test_records';
}
}
parent::__construct($id);
}
示例14: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->config_class_id = new TableColumn('int', '11', true, '', '');
$this->month = new TableColumn('int', '2', true, '', '');
$this->fee_category_id = new TableColumn('int', '11', true, '', '');
$this->amount = new TableColumn('int', '6', true, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'default_installments';
}
}
parent::__construct($id);
}
示例15: __construct
function __construct($id = null)
{
$this->id = new TableColumn('int', '11', true, '', 'PRI');
$this->fee_voucher_id = new TableColumn('int', '11', true, '', '');
$this->fee_category_id = new TableColumn('int', '11', true, '', '');
$this->amount = new TableColumn('int', '11', true, '', '');
$this->comments = new TableColumn('text', '0', false, '', '');
// get default value
foreach ($this as $field => $info) {
if ($info instanceof TableColumn) {
if ($def = getDefVal($field)) {
$this->{$field}->defValue = $def;
}
$this->{$field}->name = $field;
$this->{$field}->table = 'fee_voucher_datails';
}
}
parent::__construct($id);
}