File size: 1.49Kb
<?php
/**
* SocialEngine
*
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
* @version $Id: Delete.php 9747 2012-07-26 02:08:08Z john $
* @author John
*/
/**
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
*/
class Core_Form_Admin_Language_Delete extends Engine_Form
{
public function init()
{
$this
->setTitle('Delete Language Pack')
->setDescription('You are about to delete the language pack "%s". Are you sure you want to do this? This action cannot be undone.')
->setAttrib('class', 'global_form_popup')
;
// Init submit
$this->addElement('Button', 'submit', array(
'label' => 'Delete',
'type' => 'submit',
'ignore'=>true,
'decorators' => array(
'ViewHelper',
),
));
$this->addElement('Cancel', 'cancel', array(
'prependText' => ' or ',
'link' => true,
'label' => 'cancel',
'onclick' => 'parent.Smoothbox.close();',
'decorators' => array(
'ViewHelper'
)
));
$this->addDisplayGroup(array(
'submit',
'cancel'
), 'buttons', array(
'decorators' => array(
'FormElements'
)
));
$this->addDisplayGroup(array('submit', 'cancel'), 'buttons');
$button_group = $this->getDisplayGroup('buttons');
}
}