本文整理汇总了PHP中Zend_Form_Element::getDescription方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Form_Element::getDescription方法的具体用法?PHP Zend_Form_Element::getDescription怎么用?PHP Zend_Form_Element::getDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Form_Element
的用法示例。
在下文中一共展示了Zend_Form_Element::getDescription方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: prepareConfigElement
/**
* Remove cookie.jar if configs change and convert form password to password element
* @param string $section
* @param string $namespace
* @param unknown_type $key
* @param Zend_Form_Element $element
* @param Zend_Form $form
* @param Zend_Controller_Action $controller
*/
public function prepareConfigElement($section, $namespace, $key, Zend_Form_Element $element, Zend_Form $form, Zend_Controller_Action $controller)
{
// nothing to do if this isn't the right section
if ($namespace != $this->getId()) {
return;
}
switch ($key) {
// i have to convert it to a password element
case 'plugins_weebtv_auth_password':
$password = $form->createElement('password', 'plugins_weebtv_auth_password', array('label' => $element->getLabel(), 'description' => $element->getDescription(), 'renderPassword' => true));
$form->plugins_weebtv_auth_password = $password;
break;
}
}
示例2: getDescriptionHTML
/**
*
* @param Zend_Form_Element $element
* @return string
*/
protected function getDescriptionHTML($element)
{
$desc = $element->getDescription();
if (empty($desc)) {
return '';
}
return '<div class="description">' . $desc . '</div>';
}
示例3: prepareConfigElement
/**
* Remove cookie.jar if configs change and convert form password to password element
* @param string $section
* @param string $namespace
* @param unknown_type $key
* @param Zend_Form_Element $element
* @param Zend_Form $form
* @param Zend_Controller_Action $controller
*/
public function prepareConfigElement($section, $namespace, $key, Zend_Form_Element $element, Zend_Form $form, Zend_Controller_Action $controller)
{
// nothing to do if this isn't the right section
if ($namespace != $this->getId()) {
return;
}
switch ($key) {
// i have to convert it to a password element
case 'plugins_megavideo_premium_password':
$password = $form->createElement('password', 'plugins_megavideo_premium_password', array('label' => $element->getLabel(), 'description' => $element->getDescription(), 'renderPassword' => true));
$form->plugins_megavideo_premium_password = $password;
break;
}
// remove cookie.jar if somethings has value
if (!$form->isErrors() && !is_null($element->getValue()) && file_exists(APPLICATION_PATH . '/../data/megavideo/cookie.jar')) {
if (@(!unlink(APPLICATION_PATH . '/../data/megavideo/cookie.jar'))) {
X_Debug::e("Error removing cookie.jar");
}
}
}
示例4: prepareConfigElement
/**
* Convert form password to password element
* @param string $section
* @param string $namespace
* @param unknown_type $key
* @param Zend_Form_Element $element
* @param Zend_Form $form
* @param Zend_Controller_Action $controller
*/
public function prepareConfigElement($section, $namespace, $key, Zend_Form_Element $element, Zend_Form $form, Zend_Controller_Action $controller)
{
// nothing to do if this isn't the right section
if ($namespace != $this->getId()) {
return;
}
switch ($key) {
// i have to convert it to a password element
case 'plugins_rapidshare_premium_password':
$password = $form->createElement('password', 'plugins_rapidshare_premium_password', array('label' => $element->getLabel(), 'description' => $element->getDescription(), 'renderPassword' => true));
$form->plugins_rapidshare_premium_password = $password;
break;
}
// remove cookie if somethings has value
if (!$form->isErrors() && !is_null($element->getValue()) && ($key = 'plugins_rapidshare_premium_password')) {
// clean cookies
try {
X_Debug::i("Cleaning up cookies in cache");
/* @var $cacheHelper X_VlcShares_Plugins_Helper_Cache */
$cacheHelper = X_VlcShares_Plugins::helpers()->helper('cache');
try {
$cacheHelper->retrieveItem("rapidshare::cookie");
// set expire date to now!
$cacheHelper->storeItem("rapidshare::cookie", '', 0);
} catch (Exception $e) {
// nothing to do
}
try {
$cacheHelper->retrieveItem("rapidshare::lastreloginflag");
// set expire date to now!
$cacheHelper->storeItem("realdebrid::lastreloginflag", '', 0);
} catch (Exception $e) {
// nothing to do
}
} catch (Exception $e) {
X_Debug::w("Cache plugin disabled? O_o");
}
}
}