Source of file ElementTagsAdmin.php
Size: 1,564 Bytes - Last Modified: 2016-05-18T03:08:27+02:00
buildproject/core/module_tags/admin/elements/ElementTagsAdmin.php
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | <?php /*"****************************************************************************************************** * (c) 2004-2006 by MulchProductions, www.mulchprod.de * * (c) 2007-2016 by Kajona, www.kajona.de * * Published under the GNU LGPL v2.1, see /system/licence_lgpl.txt * *-------------------------------------------------------------------------------------------------------* * $Id$ * ********************************************************************************************************/ namespace Kajona\Tags\Admin\Elements; use Kajona\Pages\Admin\AdminElementInterface; use Kajona\Pages\Admin\ElementAdmin; /** * Class to handle the admin-stuff of the tags-element * * @package module_tags * @author sidler@mulchprod.de * * @targetTable element_universal.content_id */ class ElementTagsAdmin extends ElementAdmin implements AdminElementInterface { /** * @var string * @tableColumn element_universal.char1 * * @fieldType Kajona\Pages\Admin\Formentries\FormentryTemplate * @fieldLabel template * * @fieldTemplateDir /element_tags */ private $strChar1; /** * @param string $strChar1 */ public function setStrChar1($strChar1) { $this->strChar1 = $strChar1; } /** * @return string */ public function getStrChar1() { return $this->strChar1; } } |