* @license http://www.contenido.org/license/LIZENZ.txt * @link http://www.4fb.de * @link http://www.contenido.org * @since file available since contenido release <= 4.6 * * {@internal * created unknown * modified 2008-06-30, Dominik Ziegler, add security fix * modified 2011-03-14, Murat Purc, adapted to new GenericDB, partly ported to PHP 5, formatting * * $Id: class.artspec.php 2 2011-07-20 12:00:48Z oldperl $: * }} * */ if (!defined('CON_FRAMEWORK')) { die('Illegal call'); } class ArtSpecCollection extends ItemCollection { /** * Constructor Function * @param none */ public function __construct() { global $cfg; parent::__construct($cfg['tab']['art_spec'], "idartspec"); $this->_setItemClass("ArtSpecItem"); } /** @deprecated [2011-03-15] Old constructor function for downwards compatibility */ public function ArtSpecCollection() { cWarning(__FILE__, __LINE__, "Deprecated method call, use __construct()"); $this->__construct(); } } /** * Article specification Item */ class ArtSpecItem extends Item { /** * Constructor Function * @param mixed $mId Specifies the ID of item to load */ public function __construct($mId = false) { global $cfg; parent::__construct($cfg['tab']['art_spec'], "idartspec"); if ($mId !== false) { $this->loadByPrimaryKey($mId); } } /** @deprecated [2011-03-15] Old constructor function for downwards compatibility */ public function ArtSpecItem($mId = false) { cWarning(__FILE__, __LINE__, "Deprecated method call, use __construct()"); $this->__construct($mId); } } ?>