Beispiel #1
0
 /**
  *
  * @param array $options Options to build the form
  */
 public function __construct($options = null)
 {
     parent::__construct($options);
     // Text
     $text = new Cible_Form_Element_Editor('FTI_Text', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $text->setLabel($this->getView()->getCibleText('form_label_text'))->setAttrib('class', 'mediumEditor');
     $this->addElement($text);
 }
Beispiel #2
0
 public function __construct($options = null)
 {
     parent::__construct($options);
     // Title
     $title = new Zend_Form_Element_Text('NR_Title');
     $title->setLabel($this->getView()->getCibleText('form_label_title'))->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $this->addElement($title);
     // Date picker
     $datePicker = new Cible_Form_Element_DatePicker('NR_Date', array('jquery.params' => array('changeYear' => true, 'changeMonth' => true)));
     $datePicker->setLabel($this->getView()->getCibleText('form_extranet_newsletter_label_releaseDate'))->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->addValidator('Date', true, array('messages' => array('dateNotYYYY-MM-DD' => $this->getView()->getCibleText('validation_message_invalid_date'), 'dateInvalid' => $this->getView()->getCibleText('validation_message_invalid_date'), 'dateFalseFormat' => $this->getView()->getCibleText('validation_message_invalid_date'))));
     $this->addElement($datePicker);
     // Language
     $language = new Zend_Form_Element_Select('NR_LanguageID');
     $language->setLabel($this->getView()->getCibleText('form_label_language'))->setAttrib('class', 'largeSelect');
     $languagesData = Cible_FunctionsGeneral::getAllLanguage();
     foreach ($languagesData as $languageData) {
         $language->addMultiOption($languageData['L_ID'], $languageData['L_Title']);
     }
     $this->addElement($language);
     // Category
     $category = new Zend_Form_Element_Select('NR_CategoryID');
     $category->setLabel($this->getView()->getCibleText('form_label_category'))->setAttrib('class', 'largeSelect');
     $categoriesData = $this->getView()->getAllNewsletterCategories();
     foreach ($categoriesData as $categoryData) {
         $category->addMultiOption($categoryData['C_ID'], $categoryData['CI_Title']);
     }
     $this->addElement($category);
     // Model
     $model = new Zend_Form_Element_Select('NR_ModelID');
     $model->setLabel($this->getView()->getCibleText('form_label_model'))->setAttrib('class', 'largeSelect');
     $modelsData = $this->getView()->getAllNewsletterModels();
     foreach ($modelsData as $modelData) {
         $model->addMultiOption($modelData['NMI_NewsletterModelID'], $modelData['NMI_Title']);
     }
     $this->addElement($model);
     //if($this->salutationDefaultText!=""){
     $intro = new Cible_Form_Element_Editor('NR_TextIntro', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $intro->setLabel($this->getView()->getCibleText('form_label_newsletter_text_intro'))->setAttrib('class', 'largeEditor');
     $this->addElement($intro);
     // show online
     $showOnline = new Zend_Form_Element_Checkbox('NR_Online');
     $showOnline->setLabel($this->getView()->getCibleText('form_label_showOnline'));
     $showOnline->setDecorators(array('ViewHelper', array('label', array('placement' => 'append')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'label_after_checkbox'))));
     $this->addElement($showOnline);
     // email
     //            $regexValidate = new Cible_Validate_Email();
     //            $regexValidate->setMessage($this->getView()->getCibleText('validation_message_emailAddressInvalid'), 'regexNotMatch');
     $email = new Zend_Form_Element_Text('NR_AdminEmail');
     $email->setLabel($this->getView()->getCibleText('newsletter_form_label_admin_email'))->addFilter('StripTags')->addFilter('StringTrim')->addFilter('StringToLower')->setAttrib('class', 'stdTextInput');
     /*$email->setDecorators(array(
           'ViewHelper',
           array('label', array('placement' => 'prepend')),
           array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'dd_form dd_email'))
       ));*/
     // $email->setAttrib('class', 'newsletter_form_element text_email');
     $this->addElement($email);
 }
Beispiel #3
0
 public function __construct($options = null)
 {
     parent::__construct($options);
     $baseDir = $options['baseDir'];
     $identifierID = $options['identifierID'];
     // tinymce editor for the text online
     $draftText = new Cible_Form_Element_Editor('ST_Value', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $draftText->setLabel($this->getView()->getCibleText('list_column_ST_Value'))->setAttrib('class', 'mediumEditor');
     // Adds all elements to the form
     $this->addElements(array($draftText));
 }
 public function __construct($options = null)
 {
     parent::__construct($options);
     $newsletterID = $options['newsletterID'];
     $imageSrc = $options['imageSrc'];
     $isNewImage = $options['isNewImage'];
     // Title
     $title = new Zend_Form_Element_Text('NA_Title');
     $title->setLabel($this->getView()->getCibleText('form_label_title'))->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $this->addElement($title);
     // article image
     if ($newsletterID == '') {
         $pathTmp = "../../../../../data/images/newsletter/tmp";
     } else {
         $pathTmp = "../../../../../data/images/newsletter/{$newsletterID}/tmp";
     }
     // hidden specify if new image for the news
     $newImage = new Zend_Form_Element_Hidden('isNewImage', array('value' => $isNewImage));
     $newImage->removeDecorator('Label');
     //$newImage->setDecorators(array('ViewHelper'));
     $this->addElement($newImage);
     $imageTmp = new Zend_Form_Element_Hidden('ImageSrc_tmp');
     $imageTmp->removeDecorator('Label');
     $this->addElement($imageTmp);
     $imageOrg = new Zend_Form_Element_Hidden('ImageSrc_original');
     $imageOrg->removeDecorator('Label');
     $this->addElement($imageOrg);
     $imageView = new Zend_Form_Element_Image('ImageSrc_preview', array('onclick' => 'return false;'));
     $imageView->setImage($imageSrc);
     $this->addElement($imageView);
     $imagePicker = new Cible_Form_Element_ImagePicker('ImageSrc', array('onchange' => "document.getElementById('imageView').src = document.getElementById('ImageSrc').value", 'associatedElement' => 'ImageSrc_preview', 'pathTmp' => $pathTmp, 'contentID' => $newsletterID));
     $imagePicker->removeDecorator('Label');
     $this->addElement($imagePicker);
     $imageAlt = new Zend_Form_Element_Text("NA_ImageAlt");
     $imageAlt->setLabel($this->getView()->getCibleText('form_label_description_image'))->setAttrib('class', 'stdTextInput');
     $this->addElement($imageAlt);
     // resume text
     $resume = new Cible_Form_Element_Editor('NA_Resume', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $resume->setLabel($this->getView()->getCibleText('form_label_short_text'))->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => Cible_Translation::getCibleText('validation_message_empty_field'))));
     $resume->setAttrib('class', 'largeEditor');
     $this->addElement($resume);
     $optionText = new Zend_Form_Element_Radio('NA_TextLink');
     $optionText->setRequired(true)->addMultiOption('1', $this->getView()->getCibleText('extranet_newsletter_option_text_url_text'))->addMultiOption('2', $this->getView()->getCibleText('extranet_newsletter_option_text_url_url'))->addMultiOption('3', $this->getView()->getCibleText('extranet_newsletter_option_text_url_nothing'));
     // Text
     $text = new Cible_Form_Element_Editor('NA_Text', array('mode' => Cible_Form_Element_Editor::ADVANCED, 'class' => 'textAreaToMoveUp'));
     $text->setLabel($this->getView()->getCibleText('form_label_text'))->setAttrib('class', 'largeEditor');
     $this->addElement($text);
     $url = new Zend_Form_Element_Text('NA_URL');
     $url->addFilter('StripTags')->addFilter('StringTrim')->setAttrib('class', 'stdTextInputNewsletterURL');
     $this->addElement($optionText);
     $this->addElement($url);
     $this->addDisplayGroup(array('NA_TextLink', 'NA_URL'), 'linkTo', array('legend' => $this->getView()->getCibleText('extranet_newsletter_text_url')));
 }
Beispiel #5
0
 public function __construct($options = null)
 {
     if (!empty($options['object'])) {
         $this->_object = $options['object'];
         unset($options['object']);
     }
     // variable
     parent::__construct($options);
     $titleEditor = new Cible_Form_Element_Editor('ST_ValueTitle', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $titleEditor->setLabel($this->getView()->getCibleText('form_legend_blockData'))->setAttrib('class', 'largeEditor')->setOrder(9);
     $label = $titleEditor->getDecorator('label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($titleEditor);
     $textEditor = new Cible_Form_Element_Editor('ST_ValueText', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $textEditor->setLabel($this->getView()->getCibleText('form_legend_blockData'))->setAttrib('class', 'largeEditor')->setOrder(7);
     $label = $textEditor->getDecorator('label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($textEditor);
 }
Beispiel #6
0
 /**
  * Class constructor
  *
  * @return void
  */
 public function __construct($options)
 {
     $this->_addSubmitSaveClose = true;
     parent::__construct($options);
     $imageSrc = $options['imageSrc'];
     $dataId = $options['dataId'];
     $imgField = $options['imgField'];
     $isNewImage = $options['isNewImage'];
     $moduleName = $options['moduleName'];
     $productFormLeft = new Zend_Form_SubForm();
     $productFormRight = new Zend_Form_SubForm();
     $productFormBotPub = new Zend_Form_SubForm();
     $productFormBotPro = new Zend_Form_SubForm();
     if ($dataId == '') {
         $pathTmp = "../../../../../data/images/" . $moduleName . "/tmp";
     } else {
         $pathTmp = "../../../../../data/images/" . $moduleName . "/" . $dataId . "/tmp";
     }
     // hidden specify if new image for the news
     $newImage = new Zend_Form_Element_Hidden('isNewImage', array('value' => $isNewImage));
     $newImage->removeDecorator('Label');
     $productFormRight->addElement($newImage);
     // Name of the product line
     $name = new Zend_Form_Element_Text('PI_Name');
     $name->setLabel($productFormLeft->getView()->getCibleText('product_label_name') . "<span class='field_required'>*</span>")->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $productFormLeft->getView()->getCibleText('validation_message_empty_field'))))->setDecorators(array('ViewHelper', array('label', array('placement' => 'prepend')), array('Errors', array('placement' => 'append')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'form_title_inline', 'id' => 'title'))))->setAttrib('class', 'stdTextInput');
     $label = $name->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $productFormLeft->addElement($name);
     // List of sub categories
     $oSubCategories = new SubCategoriesObject();
     $listSubCat = $oSubCategories->subcatCollection(Zend_Registry::get('currentEditLanguage'));
     $subCategories = new Zend_Form_Element_Select('P_SubCategoryID');
     $subCategories->setLabel($productFormLeft->getView()->getCibleText('form_products_subcat_label') . "<span class='field_required'>*</span>")->setAttrib('class', 'largeSelect')->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $productFormLeft->getView()->getCibleText('validation_message_empty_field'))));
     $subCategories->addMultiOption('', $this->getView()->getCibleText('form_select_default_label'));
     $subCategories->addMultiOptions($listSubCat);
     $productFormLeft->addElement($subCategories);
     // Checkbox for new product
     $isNewProd = new Zend_Form_Element_Checkbox('P_New');
     $isNewProd->setLabel($productFormLeft->getView()->getCibleText('form_product_isnew_label'));
     $isNewProd->setDecorators(array('ViewHelper', array('label', array('placement' => 'append')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'label_after_checkbox'))));
     $productFormLeft->addElement($isNewProd);
     // id of the associated meta data
     $metaTagId = new Zend_Form_Element_Hidden('PI_MetaId');
     $metaTagId->removeDecorator('Label');
     $productFormLeft->addElement($metaTagId);
     // Image for the product line
     $imageTmp = new Zend_Form_Element_Hidden($imgField . '_tmp');
     $imageTmp->removeDecorator('Label');
     $productFormRight->addElement($imageTmp);
     $imageOrg = new Zend_Form_Element_Hidden($imgField . '_original');
     $imageOrg->removeDecorator('Label');
     $productFormRight->addElement($imageOrg);
     $imageView = new Zend_Form_Element_Image($imgField . '_preview', array('onclick' => 'return false;'));
     $imageView->setImage($imageSrc);
     $productFormRight->addElement($imageView);
     $imagePicker = new Cible_Form_Element_ImagePicker($imgField, array('onchange' => "document.getElementById('imageView').src = document.getElementById('" . $imgField . "').value", 'associatedElement' => $imgField . '_preview', 'pathTmp' => $pathTmp, 'contentID' => $dataId));
     $imagePicker->removeDecorator('Label');
     $productFormRight->addElement($imagePicker);
     //Keywords field
     $keywords = new Zend_Form_Element_Text('PI_MotsCles');
     $keywords->setLabel($productFormLeft->getView()->getCibleText('form_product_keywords_label'))->addFilter('StripTags')->addFilter('StringTrim')->setDecorators(array('ViewHelper', array('label', array('placement' => 'prepend')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'form_title_inline marginTop30', 'id' => 'title'))))->setAttrib('class', 'largeTextInput');
     $label = $keywords->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $productFormLeft->addElement($keywords);
     // Description of the product
     $descrPublic = new Cible_Form_Element_Editor('PI_DescriptionPublic', array('mode' => Cible_Form_Element_Editor::ADVANCED, 'subFormID' => 'productFormBotPub'));
     $descrPublic->setLabel($this->getView()->getCibleText('product_label_descriptionPublic'))->setAttrib('class', 'largeEditor');
     $label = $descrPublic->getDecorator('label');
     $label->setOption('class', $this->_labelCSS);
     $productFormBotPub->addElement($descrPublic);
     // Technical specs of the product for public.
     $urlTechFile = new Zend_Form_Element_Hidden('PI_FicheTechniquePublicPDF');
     $urlTechFile->removeDecorator('Label');
     $productFormBotPub->addElement($urlTechFile);
     $techfile = new Zend_Form_Element_Hidden('technicalSpecsName');
     $techfile->removeDecorator('Label');
     $productFormBotPub->addElement($techfile);
     // Technical specs of the product.
     $technicalSpecs = new Cible_Form_Element_FileManager('PI_FicheTechniquePublicPDF', array('associatedElement' => 'productFormBotPub', 'displayElement' => 'technicalSpecsName', 'pathTmp' => $this->_filePath, 'contentID' => $this->_dataId, 'setInit' => true));
     $technicalSpecs->setLabel($productFormBotPub->getView()->getCibleText('product_label_technical_specs'))->addFilter('StripTags')->addFilter('StringTrim')->setDecorators(array('ViewHelper', array('label', array('placement' => 'prepend')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'form_title_inline', 'id' => 'title'))))->setAttrib('class', 'stdTextInput');
     $label = $technicalSpecs->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $productFormBotPub->addElement($technicalSpecs);
     //-----------------------------------------------------
     // Description of the product for pro
     $descrPro = new Cible_Form_Element_Editor('PI_DescriptionPro', array('mode' => Cible_Form_Element_Editor::ADVANCED, 'subFormID' => 'productFormBotPro'));
     $descrPro->setLabel($this->getView()->getCibleText('product_label_descriptionPro'))->setAttrib('class', 'largeEditor');
     $label = $descrPro->getDecorator('label');
     $label->setOption('class', $this->_labelCSS);
     $productFormBotPro->addElement($descrPro);
     // Technical specs of the product for pro.
     $urlTechFile = new Zend_Form_Element_Hidden('PI_FicheTechniqueProPDF');
     $urlTechFile->removeDecorator('Label');
     $productFormLeft->addElement($urlTechFile);
     $techfile = new Zend_Form_Element_Hidden('technicalSpecsPro');
     $techfile->removeDecorator('Label');
     $productFormBotPro->addElement($techfile);
     // Technical specs of the product.
     $technicalSpecsPro = new Cible_Form_Element_FileManager('PI_FicheTechniqueProPDF', array('associatedElement' => 'productFormBotPro', 'displayElement' => 'technicalSpecsPro', 'pathTmp' => $this->_filePath, 'contentID' => $this->_dataId, 'setInit' => true));
     $technicalSpecsPro->setLabel($productFormBotPro->getView()->getCibleText('product_label_technical_specs'))->addFilter('StripTags')->addFilter('StringTrim')->setDecorators(array('ViewHelper', array('label', array('placement' => 'prepend')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'form_title_inline', 'id' => 'title'))))->setAttrib('class', 'stdTextInput');
     $label = $technicalSpecsPro->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $productFormBotPro->addElement($technicalSpecsPro);
     $productFormBotPub->setLegend($this->getView()->getCibleText('subform_public_legend'));
     $productFormBotPub->setAttrib('class', 'fieldsetBorder');
     $productFormBotPro->setLegend($this->getView()->getCibleText('subform_professional_legend'));
     $productFormBotPro->setAttrib('class', 'fieldsetBorder');
     $this->addSubForm($productFormLeft, 'productFormLeft');
     $this->addSubForm($productFormRight, 'productFormRight');
     $this->addSubForm($productFormBotPub, 'productFormBotPub');
     $this->addSubForm($productFormBotPro, 'productFormBotPro');
 }
Beispiel #7
0
 public function __construct($options = null)
 {
     $this->_addSubmitSaveClose = true;
     parent::__construct($options);
     $imageSrc = $options['imageSrc'];
     $newsID = $options['newsID'];
     $isNewImage = $options['isNewImage'];
     $catagoryID = "";
     if (isset($options['catagoryID'])) {
         $catagoryID = $options['catagoryID'];
     }
     if ($newsID == '') {
         $pathTmp = "../../../../../data/images/news/tmp";
     } else {
         $pathTmp = "../../../../../data/images/news/{$newsID}/tmp";
     }
     // hidden specify if new image for the news
     $newImage = new Zend_Form_Element_Hidden('isNewImage', array('value' => $isNewImage));
     $newImage->removeDecorator('Label');
     $this->addElement($newImage);
     // Title
     $title = new Zend_Form_Element_Text('Title');
     $title->setLabel($this->getView()->getCibleText('form_label_title'))->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $label = $title->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($title);
     if (isset($options['categoriesList']) && $options['categoriesList'] == 'true') {
         // select box category (Parameter #1)
         $categoryNews = new Zend_Form_Element_Select('Param1');
         $categoryNews->setLabel($this->getView()->getCibleText('form_label_news_category'))->setValue($catagoryID)->setAttrib('class', 'largeSelect');
         $categories = new Categories();
         $select = $categories->select()->setIntegrityCheck(false)->from('Categories')->join('CategoriesIndex', 'C_ID = CI_CategoryID')->where('C_ModuleID = ?', 2)->where('CI_LanguageID = ?', Zend_Registry::get("languageID"))->order('CI_Title');
         $categoriesArray = $categories->fetchAll($select);
         foreach ($categoriesArray as $category) {
             $categoryNews->addMultiOption($category['C_ID'], $category['CI_Title']);
         }
         $this->addElement($categoryNews);
     }
     // Date picker
     $date = new Cible_Form_Element_DatePicker('Date', array('jquery.params' => array('changeYear' => true, 'changeMonth' => true)));
     $date->setLabel($this->getView()->getCibleText('form_label_date'))->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->addValidator('Date', true, array('messages' => array('dateNotYYYY-MM-DD' => $this->getView()->getCibleText('validation_message_invalid_date'), 'dateInvalid' => $this->getView()->getCibleText('validation_message_invalid_date'), 'dateFalseFormat' => $this->getView()->getCibleText('validation_message_invalid_date'))));
     $this->addElement($date);
     // Date picker
     $datePicker = new Cible_Form_Element_DatePicker('ReleaseDate', array('jquery.params' => array('changeYear' => true, 'changeMonth' => true)));
     $datePicker->setLabel($this->getView()->getCibleText('form_extranet_news_label_releaseDate'))->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->addValidator('Date', true, array('messages' => array('dateNotYYYY-MM-DD' => $this->getView()->getCibleText('validation_message_invalid_date'), 'dateInvalid' => $this->getView()->getCibleText('validation_message_invalid_date'), 'dateFalseFormat' => $this->getView()->getCibleText('validation_message_invalid_date'))));
     $this->addElement($datePicker);
     // Status
     $status = new Zend_Form_Element_Checkbox('Status');
     $status->setLabel('Nouvelle en ligne');
     $status->setDecorators(array('ViewHelper', array('label', array('placement' => 'append')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'label_after_checkbox'))));
     $this->addElement($status);
     // IMAGE
     $imageTmp = new Zend_Form_Element_Hidden('ImageSrc_tmp');
     $imageTmp->removeDecorator('Label');
     $this->addElement($imageTmp);
     $imageOrg = new Zend_Form_Element_Hidden('ImageSrc_original');
     $imageOrg->removeDecorator('Label');
     $this->addElement($imageOrg);
     $imageView = new Zend_Form_Element_Image('ImageSrc_preview', array('onclick' => 'return false;'));
     $imageView->setImage($imageSrc);
     $this->addElement($imageView);
     $imagePicker = new Cible_Form_Element_ImagePicker('ImageSrc', array('onchange' => "document.getElementById('imageView').src = document.getElementById('ImageSrc').value", 'associatedElement' => 'ImageSrc_preview', 'pathTmp' => $pathTmp, 'contentID' => $newsID));
     $imagePicker->removeDecorator('Label');
     $this->addElement($imagePicker);
     $imageAlt = new Zend_Form_Element_Text("ImageAlt");
     $imageAlt->setLabel($this->getView()->getCibleText('form_label_description_image'))->setAttrib('class', 'stdTextInput');
     $this->addElement($imageAlt);
     // Breif text
     $breif = new Cible_Form_Element_Editor('Brief', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $breif->setLabel($this->getView()->getCibleText('form_label_short_text'))->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => Cible_Translation::getCibleText('validation_message_empty_field'))))->setAttrib('class', 'mediumEditor');
     $breif->setDecorators(array('ViewHelper', array('Errors', array('placement' => 'prepend')), array('label', array('placement' => 'prepend'))));
     $label = $breif->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($breif);
     // Text
     $text = new Cible_Form_Element_Editor('Text', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $text->setLabel($this->getView()->getCibleText('form_label_text'))->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => Cible_Translation::getCibleText('validation_message_empty_field'))))->setAttrib('class', 'mediumEditor')->setDecorators(array('ViewHelper', array('Errors', array('placement' => 'prepend')), array('label', array('placement' => 'prepend'))));
     $label = $text->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($text);
     $categoryID = new Zend_Form_Element_Hidden('CategoryID');
     $this->addElement($categoryID);
 }
Beispiel #8
0
 public function __construct($options = null)
 {
     $this->tableFieldPrefix = '';
     $this->tableName = 'EventsData';
     parent::__construct($options);
     $imageSrc = $options['imageSrc'];
     $eventID = $options['eventID'];
     $isNewImage = $options['isNewImage'];
     if ($eventID == '') {
         $pathTmp = "../../../../../data/images/event/tmp";
     } else {
         $pathTmp = "../../../../../data/images/event/{$eventID}/tmp";
     }
     // hidden specify if new image for the events
     $newImage = new Zend_Form_Element_Hidden('isNewImage', array('value' => $isNewImage));
     $newImage->removeDecorator('Label');
     $this->addElement($newImage);
     if (isset($options['categoriesList']) && $options['categoriesList'] == 'true') {
         // select box category (Parameter #1)
         $categoryEvents = new Zend_Form_Element_Select('Param1');
         $categoryEvents->setLabel('Catégorie de l\'événement')->setAttrib('class', 'largeSelect');
         $categories = new Categories();
         $select = $categories->select()->setIntegrityCheck(false)->from('Categories')->join('CategoriesIndex', 'C_ID = CI_CategoryID')->where('C_ModuleID = ?', 7)->where('CI_LanguageID = ?', Zend_Registry::get("languageID"))->order('CI_Title');
         $categoriesArray = $categories->fetchAll($select);
         foreach ($categoriesArray as $category) {
             $categoryEvents->addMultiOption($category['C_ID'], $category['CI_Title']);
         }
         $this->addElement($categoryEvents);
     }
     // Date picker
     $datePicker = new Cible_Form_Element_DateRangePicker('DateRange');
     $datePicker->setLabel('Dates de l\'événement :')->setRequired()->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => Cible_Translation::getCibleText('validation_message_invalid_date'))));
     $this->addElement($datePicker);
     // Status
     $status = new Zend_Form_Element_Checkbox('Status');
     $status->setLabel('événement en ligne');
     $status->setDecorators(array('ViewHelper', array('label', array('placement' => 'append')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'label_after_checkbox'))));
     $this->addElement($status);
     // IMAGE
     $imageTmp = new Zend_Form_Element_Hidden('ImageSrc_tmp');
     $imageTmp->removeDecorator('Label');
     $this->addElement($imageTmp);
     $imageOrg = new Zend_Form_Element_Hidden('ImageSrc_original');
     $imageOrg->removeDecorator('Label');
     $this->addElement($imageOrg);
     $imageView = new Zend_Form_Element_Image('ImageSrc_preview', array('onclick' => 'return false;'));
     $imageView->setImage($imageSrc);
     $this->addElement($imageView);
     $imagePicker = new Cible_Form_Element_ImagePicker('ImageSrc', array('onchange' => "document.getElementById('imageView').src = document.getElementById('ImageSrc').value", 'associatedElement' => 'ImageSrc_preview', 'pathTmp' => $pathTmp, 'contentID' => $eventID));
     $imagePicker->removeDecorator('Label');
     $this->addElement($imagePicker);
     $imageAlt = new Zend_Form_Element_Text("ImageAlt");
     $imageAlt->setLabel($this->getView()->getCibleText('form_label_description_image'))->setAttrib('class', 'stdTextInput');
     $this->addElement($imageAlt);
     // Breif text
     $breif = new Cible_Form_Element_Editor('Brief', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $breif->setLabel('Lieu *')->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => Cible_Translation::getCibleText('validation_message_invalid_text'))))->setAttrib('class', 'mediumEditor');
     $label = $breif->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($breif);
     // Text
     $text = new Cible_Form_Element_Editor('Text', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $text->setLabel('Texte *')->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => Cible_Translation::getCibleText('validation_message_invalid_text'))))->setAttrib('class', 'mediumEditor');
     $label = $text->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($text);
     $categoryID = new Zend_Form_Element_Hidden('CategoryID');
     $this->addElement($categoryID);
 }
Beispiel #9
0
 /**
  * Defines and build a textarea.
  * According to the parameter elem, it will set the element.
  *
  * $params['exclude']   => boolean; defines if the column is built.
  * $params['required '] => boolean;
  * $params['elem']      => select, checkbox, radio, editor;
  *                         If $params['elem'] = select, then the $params['src']
  *                         parameter must be defined.
  * $params['src']       => string; name of the source for the element.
  *
  * @param array $meta
  * @param array $params
  *
  * @return void
  */
 public function setElementText(array $meta, array $params)
 {
     if (!isset($params['elem'])) {
         $params['elem'] = '';
     }
     switch ($params['elem']) {
         case 'tiny':
             $element = new Cible_Form_Element_Editor($meta['COLUMN_NAME'], array('mode' => Cible_Form_Element_Editor::ADVANCED));
             $element->setLabel($this->getView()->getCibleText('form_label_' . $meta['COLUMN_NAME']))->setAttrib('class', 'mediumEditor');
             $element->setDecorators(array('ViewHelper', array('Errors', array('placement' => 'prepend')), array('label', array('placement' => 'prepend'))));
             break;
         default:
             $element = new Zend_Form_Element_Textarea($meta['COLUMN_NAME']);
             $element->setLabel($this->getView()->getCibleText('form_label_' . $meta['COLUMN_NAME']))->setAttrib('class', 'mediumEditor');
             $element = $this->_setBasicDecorator($element);
             break;
     }
     $label = $element->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($element);
 }
Beispiel #10
0
 public function __construct($options = null)
 {
     //exit;
     $this->_addSubmitSaveClose = true;
     parent::__construct($options);
     //var_dump($options);
     // exit;
     /*$addAction = $options['addAction'];
       $lang = $options['lang'];  
       $baseDir = $options['baseDir'];            
       $cancelUrl = $options['cancelUrl'];
       $VI_ID = $options['VI_ID'];
       $V_Autoplay = $options['V_Autoplay'];            
       $isNewPoster = $options['isNewPoster'];
       $isNewMP4 = $options['isNewMP4'];
       $isNewWEBM = $options['isNewWEBM'];
       $isNewOGG = $options['isNewOGG'];
       $V_Alias = $options['V_Alias'];
       $VI_Name = $options['VI_Name'];
       $V_Width = $options['V_Width'];
       $V_Height = $options['V_Height'];            
       $VI_Description = $options['VI_Description'];
       $VI_Poster = $options['VI_Poster'];            
       $VI_MP4 = $options['VI_MP4'];            
       $VI_WEBM = $options['VI_WEBM'];
       $VI_OGG = $options['VI_OGG'];*/
     $imageSrc = $options['imageSrc'];
     $pathTmp = "../../../../../data/images/tmp";
     $VI_ID = new Zend_Form_Element_Hidden('VI_ID');
     $VI_ID->removeDecorator('Label');
     $this->addElement($VI_ID);
     $newPoster = new Zend_Form_Element_Hidden('isNewPoster', array('value' => $options['isNewPoster']));
     $newPoster->removeDecorator('Label');
     $this->addElement($newPoster);
     $newMP4 = new Zend_Form_Element_Hidden('isNewMP4', array('value' => $options['isNewMP4']));
     $newMP4->removeDecorator('Label');
     $this->addElement($newMP4);
     $newWEBM = new Zend_Form_Element_Hidden('isNewWEBM', array('value' => $options['isNewWEBM']));
     $newWEBM->removeDecorator('Label');
     $this->addElement($newWEBM);
     $newOGG = new Zend_Form_Element_Hidden('isNewOGG', array('value' => $options['isNewOGG']));
     $newOGG->removeDecorator('Label');
     $this->addElement($newOGG);
     $V_Autoplay = new Zend_Form_Element_Checkbox('V_Autoplay');
     $V_Autoplay->setLabel($this->getView()->getCibleText('form_label_video_autoplay'));
     $V_Autoplay->setDecorators(array('ViewHelper', array('label', array('placement' => 'append')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'label_after_checkbox'))));
     $this->addElement($V_Autoplay);
     // Title
     $V_Alias = new Zend_Form_Element_Text('V_Alias');
     $V_Alias->setLabel($this->getView()->getCibleText('form_label_video_alias'))->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $label = $V_Alias->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($V_Alias);
     // Title
     $VI_Name = new Zend_Form_Element_Text('VI_Name');
     $VI_Name->setLabel($this->getView()->getCibleText('form_label_video_name'))->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $label = $VI_Name->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($VI_Name);
     // Title
     $V_Width = new Zend_Form_Element_Text('V_Width');
     $V_Width->setLabel($this->getView()->getCibleText('form_label_video_width'))->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $label = $V_Width->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($V_Width);
     // Title
     $V_Height = new Zend_Form_Element_Text('V_Height');
     $V_Height->setLabel($this->getView()->getCibleText('form_label_video_height'))->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $label = $V_Height->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($V_Height);
     $VI_Poster_tmp = new Zend_Form_Element_Hidden('VI_Poster_tmp');
     $VI_Poster_tmp->removeDecorator('Label');
     $this->addElement($VI_Poster_tmp);
     $imageOrg = new Zend_Form_Element_Hidden('VI_Poster_original');
     $imageOrg->removeDecorator('Label');
     $this->addElement($imageOrg);
     $imageOrg = new Zend_Form_Element_Hidden('VI_Poster_original');
     $imageOrg->removeDecorator('Label');
     $this->addElement($imageOrg);
     $VI_WEBM_tmp = new Zend_Form_Element_Hidden('VI_WEBM_tmp');
     $VI_WEBM_tmp->removeDecorator('Label');
     $this->addElement($VI_WEBM_tmp);
     $VI_OGG_tmp = new Zend_Form_Element_Hidden('VI_OGG_tmp');
     $VI_OGG_tmp->removeDecorator('Label');
     $this->addElement($VI_OGG_tmp);
     // Image for the product line
     $imageView = new Zend_Form_Element_Image('VI_Poster_preview', array('onclick' => 'return false;'));
     $imageView->setAttrib('width', $options['V_Width']);
     $imageView->setAttrib('height', $options['V_Height']);
     $imageView->setImage($imageSrc);
     $this->addElement($imageView);
     $imagePickerPoster = new Cible_Form_Element_ImagePicker('VI_Poster', array('onchange' => "document.getElementById('imageView').src = document.getElementById('VI_Poster').value", 'associatedElement' => 'VI_Poster_preview', 'pathTmp' => $pathTmp, 'contentID' => $options['VI_ID']));
     $imagePickerPoster->removeDecorator('Label');
     $this->addElement($imagePickerPoster);
     $VI_MP4_tmpt = new Zend_Form_Element_Hidden('VI_MP4', array('value' => $options['VI_MP4']));
     $VI_MP4_tmpt->removeDecorator('Label');
     $this->addElement($VI_MP4_tmpt);
     $VI_MP4_Name_tmp = new Zend_Form_Element_Hidden('VI_MP4_Name');
     $VI_MP4_Name_tmp->removeDecorator('Label');
     $this->addElement($VI_MP4_Name_tmp);
     // Technical specs of the product.
     $video1 = new Cible_Form_Element_FileManager('VI_MP4', array('displayElement' => 'video1', 'pathTmp' => "/videos", 'contentID' => $this->_dataId, 'setInit' => true));
     $video1->setLabel($this->getView()->getCibleText('form_label_video_VI_MP4'))->addFilter('StripTags')->addFilter('StringTrim')->setDecorators(array('ViewHelper', array('label', array('placement' => 'prepend')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'form_title_inline', 'id' => 'title'))))->setAttrib('class', 'stdTextInput');
     $label = $video1->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($video1);
     $VI_WEBM_tmpt = new Zend_Form_Element_Hidden('VI_WEBM', array('value' => $options['VI_WEBM']));
     $VI_WEBM_tmpt->removeDecorator('Label');
     $this->addElement($VI_WEBM_tmpt);
     $VI_WEBM_Name_tmp = new Zend_Form_Element_Hidden('VI_WEBM_Name');
     $VI_WEBM_Name_tmp->removeDecorator('Label');
     $this->addElement($VI_WEBM_Name_tmp);
     // Technical specs of the product.
     $video2 = new Cible_Form_Element_FileManager('VI_WEBM', array('displayElement' => 'video2', 'pathTmp' => "/videos", 'contentID' => $this->_dataId, 'setInit' => true));
     $video2->setLabel($this->getView()->getCibleText('form_label_video_VI_WEBM'))->addFilter('StripTags')->addFilter('StringTrim')->setDecorators(array('ViewHelper', array('label', array('placement' => 'prepend')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'form_title_inline', 'id' => 'title'))))->setAttrib('class', 'stdTextInput');
     $label = $video2->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($video2);
     $VI_OGG_tmpt = new Zend_Form_Element_Hidden('VI_OGG', array('value' => $options['VI_OGG']));
     $VI_OGG_tmpt->removeDecorator('Label');
     $this->addElement($VI_OGG_tmpt);
     $VI_OGG_Name_tmp = new Zend_Form_Element_Hidden('VI_OGG_Name');
     $VI_OGG_Name_tmp->removeDecorator('Label');
     $this->addElement($VI_OGG_Name_tmp);
     // Technical specs of the product.
     $video3 = new Cible_Form_Element_FileManager('VI_OGG', array('displayElement' => 'video3', 'pathTmp' => "/videos", 'contentID' => $this->_dataId, 'setInit' => true));
     $video3->setLabel($this->getView()->getCibleText('form_label_video_VI_OGG'))->addFilter('StripTags')->addFilter('StringTrim')->setDecorators(array('ViewHelper', array('label', array('placement' => 'prepend')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'form_title_inline', 'id' => 'title'))))->setAttrib('class', 'stdTextInput');
     $label = $video3->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($video3);
     $VI_Description = new Cible_Form_Element_Editor('VI_Description', array('mode' => Cible_Form_Element_Editor::ADVANCED, 'value' => $options['VI_Description']));
     $VI_Description->setLabel($this->getView()->getCibleText('form_label_video_description'));
     $label = $VI_Description->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($VI_Description);
     /*
      
       if($options['VI_ID'] == '')
        $pathTmp = "../../../../../data/images/videos/tmp";
                 else
        $pathTmp = "../../../../../data/images/videos/" . $options['VI_ID'] . "/tmp";           
               
                 
               
                 $VI_ID = new Zend_Form_Element_Hidden('VI_ID', array('value'=>$VI_ID));
                 $VI_ID->removeDecorator('Label');
                 $this->addElement($VI_ID);       
                 
                 $newPoster = new Zend_Form_Element_Hidden('isNewPoster', array('value'=>$isNewPoster));
                 $newPoster->removeDecorator('Label');
                 $this->addElement($newPoster);       
                 
                 $newMP4 = new Zend_Form_Element_Hidden('isNewMP4', array('value'=>$isNewMP4));
                 $newMP4->removeDecorator('Label');
                 $this->addElement($newMP4);
                 
                 $newWEBM = new Zend_Form_Element_Hidden('isNewWEBM', array('value'=>$isNewWEBM));
                 $newWEBM->removeDecorator('Label');
                 $this->addElement($newWEBM);
                 
                 $newOGG = new Zend_Form_Element_Hidden('isNewOGG', array('value'=>$isNewOGG));
                 $newOGG->removeDecorator('Label');
                 $this->addElement($newOGG);            
                 
                 $V_Autoplay = new Zend_Form_Element_Checkbox('$V_Autoplay');
                 $V_Autoplay->setLabel($this->getView()->getCibleText('form_label_video_autoplay'));
                 $V_Autoplay->setDecorators(array(
        'ViewHelper',
        array('label', array('placement' => 'append')),
        array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'label_after_checkbox')),
                 ));
                 $this->addElement($V_Autoplay);
                 
     // Title
                 $V_Alias = new Zend_Form_Element_Text('V_Alias');
                 $V_Alias->setLabel($this->getView()->getCibleText('form_label_video_alias'))
                 ->setRequired(true)
                 ->addFilter('StripTags')
                 ->addFilter('StringTrim')
                 ->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))
                 ->setAttrib('class','stdTextInput');
                 $label = $V_Alias->getDecorator('Label');
                 $label->setOption('class', $this->_labelCSS);
                 $this->addElement($V_Alias); 
                 
     // Title
                 $VI_Name = new Zend_Form_Element_Text('VI_Name');
                 $VI_Name->setLabel($this->getView()->getCibleText('form_label_video_name'))
                 ->setRequired(true)
                 ->addFilter('StripTags')
                 ->addFilter('StringTrim')
                 ->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))
                 ->setAttrib('class','stdTextInput');
                 $label = $VI_Name->getDecorator('Label');
                 $label->setOption('class', $this->_labelCSS);
                 $this->addElement($VI_Name);
                 
                 // Title
                 $V_Width = new Zend_Form_Element_Text('V_Width');
                 $V_Width->setLabel($this->getView()->getCibleText('form_label_video_width'))
                 ->setRequired(true)
                 ->addFilter('StripTags')
                 ->addFilter('StringTrim')
                 ->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))
                 ->setAttrib('class','stdTextInput');
                 $label = $V_Width->getDecorator('Label');
                 $label->setOption('class', $this->_labelCSS);
                 $this->addElement($V_Width);
     
                 // Title
                 $V_Height = new Zend_Form_Element_Text('V_Height');
                 $V_Height->setLabel($this->getView()->getCibleText('form_label_video_height'))
                 ->setRequired(true)
                 ->addFilter('StripTags')
                 ->addFilter('StringTrim')
                 ->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))
                 ->setAttrib('class','stdTextInput');
                 $label = $V_Height->getDecorator('Label');
                 $label->setOption('class', $this->_labelCSS);
                 $this->addElement($V_Height); 
                
                 $VI_Poster_tmp  = new Zend_Form_Element_Hidden('VI_Poster_tmp');
                 $VI_Poster_tmp->removeDecorator('Label');
                 $this->addElement($VI_Poster_tmp);            
                 
                 $VI_MP4_tmp  = new Zend_Form_Element_Hidden('VI_MP4_tmp');
                 $VI_MP4_tmp->removeDecorator('Label');
                 $this->addElement($VI_MP4_tmp);
                 
                 $VI_WEBM_tmp  = new Zend_Form_Element_Hidden('VI_WEBM_tmp');
                 $VI_WEBM_tmp->removeDecorator('Label');
                 $this->addElement($VI_WEBM_tmp);            
                 
                 $VI_OGG_tmp  = new Zend_Form_Element_Hidden('VI_OGG_tmp');
                 $VI_OGG_tmp->removeDecorator('Label');
                 $this->addElement($VI_OGG_tmp);
                 
                 
                 
                 $VI_Poster_original  = new Zend_Form_Element_Hidden('VI_Poster_original');
                 $VI_Poster_original->removeDecorator('Label');
                 $this->addElement($VI_Poster_original);
     
                 $VIPosterp = new Zend_Form_Element_Image('VI_Poster_preview', array('onclick'=>'return false;'));
                 $VIPosterp->setImage($VI_Poster);
                 $VIPosterp->setLabel($this->getView()->getCibleText('form_label_video_poster'));
                 $this->addElement($VIPosterp);
     
                 $imagePickerPoster = new Cible_Form_Element_ImagePicker('VI_Poster', 
            array( 'onchange' => "document.getElementById('VI_Poster').src = document.getElementById('VI_Poster_preview').value",
                   'associatedElement' => 'VI_Poster_preview','pathTmp'=>$pathTmp,'contentID'=>$VI_ID));
                 $imagePickerPoster->removeDecorator('Label');
                 $this->addElement($imagePickerPoster);
                 
                 
                 
                 $VI_MP4_original  = new Zend_Form_Element_Hidden('VI_MP4_original');
                 $VI_MP4_original->removeDecorator('Label');
                 $this->addElement($VI_MP4_original);
                 
                 $VI_MP4p = new Zend_Form_Element_Image('VI_MP4_preview', array('onclick'=>'return false;'));
                 $VI_MP4p->setImage($VI_MP4);
                 $VI_MP4p->setLabel($this->getView()->getCibleText('form_label_video_VI_MP4'));
                 $this->addElement($VI_MP4p);          
     
                 $imagePickerVI_MP4 = new Cible_Form_Element_ImagePicker('VI_MP4', 
            array( 'onchange' => "document.getElementById('VI_MP4').src = document.getElementById('VI_MP4_preview').value;",
                    'associatedElement' => 'VI_MP4_preview','pathTmp'=>$pathTmp,'contentID'=>$VI_MP4));
                 $imagePickerVI_MP4->removeDecorator('Label');
                 $this->addElement($imagePickerVI_MP4);
                 
                 
                 
                 $VI_WEBM_original  = new Zend_Form_Element_Hidden('VI_WEBM_original');
                 $VI_WEBM_original->removeDecorator('Label');
                 $this->addElement($VI_WEBM_original);
                 
                 $VI_WEBMp = new Zend_Form_Element_Image('VI_WEBM_preview', array('onclick'=>'return false;'));
                 $VI_WEBMp->setImage($VI_WEBM);            
                 $VI_WEBMp->setLabel($this->getView()->getCibleText('form_label_video_VI_WEBM'));
                 $this->addElement($VI_WEBMp);          
     
                 $imagePickerVI_WEBM = new Cible_Form_Element_ImagePicker('VI_WEBM', 
            array( 'onchange' => "document.getElementById('VI_WEBM').src = document.getElementById('VI_WEBM_preview').value",
                    'associatedElement' => 'VI_WEBM_preview','pathTmp'=>$pathTmp,'contentID'=>$VI_WEBM));
                 $imagePickerVI_WEBM->removeDecorator('Label');
                 $this->addElement($imagePickerVI_WEBM);
                 
                 
                 
                 $VI_OGG_original  = new Zend_Form_Element_Hidden('VI_OGG_original');
                 $VI_OGG_original->removeDecorator('Label');
                 $this->addElement($VI_OGG_original);
                 
                 $VI_OGGp = new Zend_Form_Element_Image('VI_OGG_preview', array('onclick'=>'return false;'));
                 $VI_OGGp->setImage($VI_OGG);
                 $VI_OGGp->setLabel($this->getView()->getCibleText('form_label_video_VI_OGG'));
                 $this->addElement($VI_OGGp);          
     
                 $imagePickerVI_OGG = new Cible_Form_Element_ImagePicker('VI_OGG', 
            array( 'onchange' => "document.getElementById('VI_OGG').src = document.getElementById('VI_OGG_preview').value",
                    'associatedElement' => 'VI_OGG_preview','pathTmp'=>$pathTmp,'contentID'=>$VI_OGG));
                 $imagePickerVI_OGG->removeDecorator('Label');
                 $this->addElement($imagePickerVI_OGG);
                 
                 
              
                 $VI_Description = new Cible_Form_Element_Editor('VI_Description', array('mode' => Cible_Form_Element_Editor::ADVANCED));
                 $VI_Description->setLabel($this->getView()->getCibleText('form_label_video_description')); 
                 $label = $VI_Description->getDecorator('Label');
                 $label->setOption('class', $this->_labelCSS);
     
                 $this->addElement($VI_Description);
     */
 }
Beispiel #11
0
 public function __construct($options = null)
 {
     $galleryID = $options['galleryID'];
     $imageSrc = $options['imageSrc'];
     $isNewImage = $options['isNewImage'];
     if ($galleryID) {
         $this->_addSubmitSaveClose = true;
     }
     parent::__construct($options);
     // show online
     $showOnline = new Zend_Form_Element_Checkbox('G_Online');
     $showOnline->setValue(1);
     $showOnline->setLabel($this->getView()->getCibleText('form_label_showOnline'));
     $showOnline->setDecorators(array('ViewHelper', array('label', array('placement' => 'append')), array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'class' => 'label_after_checkbox'))));
     $this->addElement($showOnline);
     // gallery position
     $position = new Zend_Form_Element_Text('G_Position');
     $position->setLabel($this->getView()->getCibleText('form_label_position'));
     $position->setRequired(true);
     $position->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))));
     $position->addValidator('Int', true, array('messages' => array('notInt' => $this->getView()->getCibleText('validation_message_int_field'))));
     $this->addElement($position);
     // default gallery image
     $imageTmp = new Zend_Form_Element_Hidden('ImageSrc_tmp');
     $imageTmp->setDecorators(array('ViewHelper', array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'openOnly' => true))));
     $this->addElement($imageTmp);
     // hidden specify if new image for the gallery
     $newImage = new Zend_Form_Element_Hidden('isNewImage', array('value' => $isNewImage));
     $newImage->setDecorators(array('ViewHelper'));
     $this->addElement($newImage);
     $imageOrg = new Zend_Form_Element_Hidden('ImageSrc_original');
     $imageOrg->setDecorators(array('ViewHelper', array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'closeOnly' => true))));
     $this->addElement($imageOrg);
     $imageView = new Zend_Form_Element_Image('ImageSrc_preview', array('onclick' => 'return false;'));
     $imageView->setImage($imageSrc);
     $imageView->removeDecorator('label');
     $this->addElement($imageView);
     $imagePicker = new Cible_Form_Element_ImageGalleryPicker('ImageSrc', array('associatedElement' => 'imageView', 'galleryID' => $galleryID));
     $imagePicker->removeDecorator('Label');
     $this->addElement($imagePicker);
     $blockCategory = new Zend_Form_Element_Select('G_CategoryID');
     $blockCategory->setLabel('Catégorie de cette galerie')->setAttrib('class', 'largeSelect')->setOrder(5);
     $categories = new Categories();
     $select = $categories->select()->setIntegrityCheck(false)->from('Categories')->join('CategoriesIndex', 'C_ID = CI_CategoryID')->where('C_ModuleID = ?', 9)->where('CI_LanguageID = ?', Zend_Registry::get("languageID"))->order('CI_Title');
     $categoriesArray = $categories->fetchAll($select);
     foreach ($categoriesArray as $category) {
         $blockCategory->addMultiOption($category['C_ID'], $category['CI_Title']);
     }
     $gall = new Categories();
     $select = $gall->select()->setIntegrityCheck(false)->from('Galleries')->where('G_ID = ?', $galleryID);
     $gallArray = $gall->fetchAll($select);
     $blockCategory->setValue($gallArray[0]['G_CategoryID']);
     $this->addElement($blockCategory);
     // Title
     $title = new Zend_Form_Element_Text('GI_Title');
     $title->setLabel($this->getView()->getCibleText('form_label_title'))->setRequired(true)->addFilter('StripTags')->addFilter('StringTrim')->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'stdTextInput');
     $this->addElement($title);
     //            $description = new Zend_Form_Element_Text('GI_Description');
     //            $description->setLabel($this->getView()->getCibleText('form_label_description'))
     //                    ->setRequired(false);
     // Description
     $description = new Cible_Form_Element_Editor('GI_Description', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $description->setLabel($this->getView()->getCibleText('form_label_description'))->setAttrib('class', 'mediumEditor');
     $this->addElement($description);
 }
Beispiel #12
0
 public function __construct($options = null)
 {
     parent::__construct($options);
     $baseDir = $options['baseDir'];
     $pageID = $options['pageID'];
     $toApprove = $options['toApprove'];
     $this->removeElement('submitSaveClose');
     $this->getElement('submitSave')->setLabel($this->getView()->getCibleText('button_save_draft'));
     // input text for the title of the text online
     $pageTitle = new Zend_Form_Element_Text('PI_PageTitle');
     $pageTitle->setLabel($this->getView()->getCibleText('label_titre_page'))->addFilter('StripTags')->addFilter('StringTrim')->setAttrib('class', 'stdTextInput');
     $label = $pageTitle->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     $this->addElement($pageTitle);
     $this->addDisplayGroup(array('PI_PageTitle'), 'infoPage');
     $this->getDisplayGroup('infoPage')->setLegend($this->getView()->getCibleText('form_legend_infoPage'))->setAttrib('class', 'infoData');
     $draftTitle = new Zend_Form_Element_Hidden('TD_DraftTitle');
     $draftTitle->removeDecorator('label');
     // tinymce editor for the text of the text online
     $draftText = new Cible_Form_Element_Editor('TD_DraftText', array('mode' => Cible_Form_Element_Editor::ADVANCED));
     $draftText->setLabel($this->getView()->getCibleText('form_label_text_draft'))->setRequired(true)->addValidator('NotEmpty', true, array('messages' => array('isEmpty' => $this->getView()->getCibleText('validation_message_empty_field'))))->setAttrib('class', 'mediumEditor');
     $label = $draftText->getDecorator('Label');
     $label->setOption('class', $this->_labelCSS);
     if ($this->getView()->aclIsAllowed('text', 'publish', false)) {
         if ($toApprove == 1) {
             // submit button  (save and return to writing)
             $submitSaveReturnWriting = new Zend_Form_Element_Submit('submit');
             $submitSaveReturnWriting->setLabel($this->getView()->getCibleText('button_save_return_writing'))->setName('submitSaveReturnWriting')->setAttrib('id', 'submitSaveReturnWriting')->setAttrib('class', 'stdButton')->removeDecorator('DtDdWrapper')->setOrder(2);
             $this->addActionButton($submitSaveReturnWriting);
         }
         // submit button  (save and put online)
         $submitSaveOnline = new Zend_Form_Element_Submit('submit');
         $submitSaveOnline->setLabel($this->getView()->getCibleText('button_save_publish'))->setName('submitSaveOnline')->setAttrib('id', 'submitSaveOnline')->setAttrib('class', 'stdButton')->removeDecorator('DtDdWrapper')->setOrder(3);
         $this->addActionButton($submitSaveOnline);
     } else {
         if ($toApprove == 1) {
             $this->getElement('submitSave')->setAttrib('disabled', 'disabled');
         } else {
             // submit button  (save and submit text to the reviser)
             $submitSaveSubmit = new Zend_Form_Element_Submit('submit');
             $submitSaveSubmit->setLabel($this->getView()->getCibleText('button_save_submit_auditor'))->setName('submitSaveSubmit')->setAttrib('id', 'submitSaveSubmit')->setAttrib('class', 'stdButton')->removeDecorator('DtDdWrapper')->setOrder(2);
             $this->addActionButton($submitSaveSubmit);
         }
     }
     // Adds all elements to the form
     $this->addElements(array($draftText, $draftTitle));
     $this->addDisplayGroup(array('TD_DraftText', 'TD_DraftTitle'), 'text');
     $this->getDisplayGroup('text')->setLegend($this->getView()->getCibleText('form_legend_blockData'))->setAttrib('class', 'infoData');
     $previewButton = new Zend_Form_Element_Button('PreviewButton');
     $previewButton->setAttrib('onclick', "showPreview('TD_DraftText');");
     $previewButton->setAttrib('class', 'previewButton');
     $previewButton->setLabel($this->getView()->getCibleText('button_preview_text'));
     $previewButton->setAttrib('onmouseover', 'this.className=\'previewButtonOver\';');
     $previewButton->setAttrib('onmouseout', 'this.className=\'previewButton\';');
     $previewButton->setDecorators(array('ViewHelper', array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'openOnly' => true, 'class' => 'text-align-right'))));
     $this->addElement($previewButton);
     $compareButton = new Zend_Form_Element_Button('CompareButton');
     $compareButton->setAttrib('onclick', "showCompare('TD_DraftText');");
     $compareButton->setAttrib('class', 'compareButton');
     $compareButton->setLabel($this->getView()->getCibleText('button_compare_text'));
     $compareButton->setAttrib('onmouseover', 'this.className=\'compareButtonOver\';');
     $compareButton->setAttrib('onmouseout', 'this.className=\'compareButton\';');
     $compareButton->setDecorators(array('ViewHelper', array(array('row' => 'HtmlTag'), array('tag' => 'dd', 'closeOnly' => true))));
     $this->addElement($compareButton);
 }