Source for file pntables.php
Documentation is available at pntables.php
* Zikula Application Framework
* @copyright (c) 2002, Zikula Development Team
* @link http://www.zikula.org
* @version $Id: pntables.php 24444 2008-07-04 11:03:47Z markwest $
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package Zikula_Value_Addons
* @package Zikula_Value_Addons
* @license http://www.gnu.org/copyleft/gpl.html
* This function is called internally by the core whenever the module is
* loaded. It adds in the information
// Initialise table array
$pntable['feeds_column'] = array('fid' => 'pn_fid',
'urltitle' => 'pn_urltitle',
$pntable['feeds_column_def'] = array('fid' => 'I(10) NOTNULL AUTOINCREMENT PRIMARY',
'name' => "C(255) NOTNULL DEFAULT ''",
'urltitle' => "C(255) NOTNULL DEFAULT ''",
'url' => "C(255) NOTNULL DEFAULT ''");
// Enable categorization services
$pntable['feeds_db_extra_enable_categorization'] = pnModGetVar('Feeds', 'enablecategorization');
$pntable['feeds_primary_key_column'] = 'fid';
// add standard data fields
// old table names for upgrade
// Return the table information
|