* @copyright (c) 2012-2013, ConLite Team * @license http://www.gnu.de/documents/gpl.en.html GPL v3 (english version) * @license http://www.gnu.de/documents/gpl.de.html GPL v3 (deutsche Version) * @link http://www.conlite.org ConLite.org * * $Id$ */ // security check defined('CON_FRAMEWORK') or die('Illegal call'); /** * Description of cApiMetaTagCollection * * @author Ortwin Pinke */ class cApiMetaTagCollection extends ItemCollection { public function __construct() { global $cfg; parent::__construct($cfg["tab"]["meta_tag"], "idmetatag"); $this->_setItemClass("cApiMetaTag"); } } /** * Description of cApiMetaTag * * @author Ortwin Pinke */ class cApiMetaTag extends Item { public function __construct() { global $cfg; parent::__construct($cfg["tab"]["meta_tag"], "idmetatag"); } } ?>