<?php
/**
* SocialEngine
*
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
* @version $Id: ItemCreate.php 9924 2013-02-16 02:16:02Z alex $
* @author John
*/
/**
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
*/
class Core_Form_Admin_Menu_ItemCreate extends Engine_Form
{
public function init()
{
$view = Zend_Registry::isRegistered('Zend_View') ? Zend_Registry::get('Zend_View') : null;
$this
->setTitle('Create Menu Item')
->setAttrib('class', 'global_form_popup');
$this->addElement('Text', 'label', array(
'label' => 'Label',
'required' => true,
'allowEmpty' => false,
));
$this->addElement('Text', 'uri', array(
'label' => 'URL (Note: If you do not want to give any URL for this, then enter javascript:void(0) below.)',
'required' => true,
'allowEmpty' => false,
'style' => 'width: 300px',
//'validators' => array(
// array('NotEmpty', true),
//)
));
$iconLabel = sprintf('More info: %s','<a href="https://community.socialengine.com/blogs/597/69/enabling-vertical-menus" target="_blank">See KB article</a>');
$this->addElement('Text', 'icon', array(
'label' => 'Icon / Icon Class (Note: Not all menus support icons.) '.$iconLabel,
'style' => 'width: 500px',
));
$this->getElement('icon')->getDecorator('Label')->setOptions(array('placement' => 'PREPEND', 'escape' => false));
$this->addElement('Checkbox', 'target', array(
'label' => 'Open in a new window?',
'checkedValue' => '_blank',
'uncheckedValue' => '',
));
$this->addElement('Checkbox', 'enabled', array(
'label' => 'Enabled?',
'checkedValue' => '1',
'uncheckedValue' => '0',
'value' => '1',
));
// Buttons
$this->addElement('Button', 'submit', array(
'label' => 'Create Menu Item',
'type' => 'submit',
'ignore' => true,
'decorators' => array('ViewHelper')
));
$this->addElement('Cancel', 'cancel', array(
'label' => 'cancel',
'link' => true,
'prependText' => ' or ',
'href' => '',
'onclick' => 'parent.Smoothbox.close();',
'decorators' => array(
'ViewHelper'
)
));
$this->addDisplayGroup(array('submit', 'cancel'), 'buttons');
}
}