Source for file PNCategoryRegistry.class.php
Documentation is available at PNCategoryRegistry.class.php
* Zikula Application Framework
* @copyright value4business GmbH
* @link http://www.zikula.org
* @version $Id: PNCategoryRegistry.class.php 20307 2006-10-14 21:06:59Z rgasch $
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @author Robert Gasch rgasch@gmail.com
* @package Zikula_System_Modules
// ensure the language file is available
$this->_objType = 'categories_registry';
$this->_objPath = 'category_registry';
$this->_init($init, $key);
// After delete, it should delete the references to this registry
// in the categories mapobj table
$where = "WHERE cmo_reg_id = '{$this->_objData[$this->_objField]}' ";
if ($data['modname'] && $data['table'] && $data['property'] && !$data['id']) {
$where = "WHERE crg_modname='$data[modname]' AND crg_table='$data[table]' AND crg_property='$data[property]'";
$_SESSION['validationFailedObjects'][$this->_objPath] = $this->_objData;
|