-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtables.php
More file actions
31 lines (27 loc) · 742 Bytes
/
tables.php
File metadata and controls
31 lines (27 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* Zichat Zikula Module
*
* @copyright Nikolay Petkov
* @license GNU/GPL
*/
function Zichat_tables()
{
// Initialise table array
$table = array();
/*$table['zichat'] = 'zichat';
$table['zichat_column'] = array(
'id' => 'id',
'html' => 'html');
$table['zichat_column_def'] = array(
'id' => 'I4 NOTNULL AUTO PRIMARY',
'html' => 'X',
);
$table['zichat_db_extra_enable_categorization'] = true;
$table['zichat_primary_key_column'] = 'id';
// add standard data fields
ObjectUtil::addStandardFieldsToTableDefinition($table['zichat_column'], '');
ObjectUtil::addStandardFieldsToTableDataDefinition($table['zichat_column_def']);
*/
return $table;
}