Files
EasySoft-ZenTaoPMS/module/dataview/config/table.php
T

24 lines
1.1 KiB
PHP

<?php
global $lang;
$config->dataview->schema = new stdclass();
$config->dataview->schema->dtable = new stdclass();
$config->dataview->schema->dtable->fieldList = array();
$config->dataview->schema->dtable->fieldList['id']['name'] = 'id';
$config->dataview->schema->dtable->fieldList['id']['type'] = 'id';
$config->dataview->schema->dtable->fieldList['name']['name'] = 'name';
$config->dataview->schema->dtable->fieldList['name']['type'] = 'title';
$config->dataview->schema->dtable->fieldList['desc']['name'] = 'desc';
$config->dataview->schema->dtable->fieldList['desc']['type'] = 'desc';
$config->dataview->schema->dtable->fieldList['type']['name'] = 'type';
$config->dataview->schema->dtable->fieldList['type']['type'] = 'category';
$config->dataview->schema->dtable->fieldList['length']['name'] = 'length';
$config->dataview->schema->dtable->fieldList['length']['title'] = $lang->dataview->length;
$config->dataview->schema->dtable->fieldList['length']['type'] = 'number';
$config->dataview->schema->dtable->fieldList['null']['name'] = 'null';
$config->dataview->schema->dtable->fieldList['null']['type'] = 'text';