* Contenido Content Management System * * Description: * Rendering left_top frame * * Requirements: * @con_php_req 5.0 * * * @package Contenido Backend plugins * @version 1.0.1 * @author unknown * @copyright four for business AG <www.4fb.de> * @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-07-02, Frederic Schneider, add security fix * * $Id$: * }} * */ if (!defined('CON_FRAMEWORK')) { die('Illegal call'); } $oPage = new UI_Left_Top(); $oPage->render();
* * * @package Contenido Backend classes * @version 1.5 * @author Timo Hummel * @copyright four for business AG <www.4fb.de> * @license http://www.contenido.org/license/LIZENZ.txt * @link http://www.4fb.de * @link http://www.contenido.org * * {@internal * created 2003-07-18 * * $Id$ * }} * */ if (!defined('CON_FRAMEWORK')) { die('Illegal call'); } $create = new Link(); $create->setMultiLink("workflow", "", "workflow_common", "workflow_create"); //$create->setCLink("workflow_common",4,"workflow_create"); $create->setContent(i18n("Create workflow", "workflow")); $create->setCustom("idworkflow", "-1"); $aAttributes = array(); $aAttributes['class'] = "addfunction"; $create->updateAttributes($aAttributes); $ui = new UI_Left_Top(); $ui->setLink($create); $ui->render();