예제 #1
0
 public function getCMSFields()
 {
     $oFieldExternalLink = new TextField('LinkExternalUrl', 'Externe link (opent in nieuw venster, begin met http://)', $this->LinkExternalUrl);
     $name = $oFieldExternalLink->getName();
     $name = preg_replace("/([A-Za-z0-9\\-_]+)/", "Widget[" . $this->ID . "][\\1]", $name);
     $oFieldExternalLink->setName($name);
     $oFieldInternalLink = new SimpleTreeDropdownField('InternalUrlID', 'Interne link', 'SiteTree', $this->InternalUrlID, null, 'Kies een pagina');
     $name = $oFieldInternalLink->getName();
     $name = preg_replace("/([A-Za-z0-9\\-_]+)/", "Widget[" . $this->ID . "][\\1]", $name);
     $oFieldInternalLink->setName($name);
     $aSelectionGroupItems = array(new SelectionGroup_Item('none', new LiteralField('nolink', ''), 'Geen link'), new SelectionGroup_Item('internal', $oFieldInternalLink, 'Interne link'), new SelectionGroup_Item('external', $oFieldExternalLink, 'Externe link'));
     $fldSelectionGroup = new SelectionGroup('LinkType', $aSelectionGroupItems);
     // config htmleditor
     // make a new TinyMCE config called "footer" by copying the default ("cms") config
     /*
     		$footerConfig = CustomHtmlEditorConfig::copy('simpletoolbar', 'cms');
     		$footerConfig->setButtonsForLine(3, array());
     		$footerConfig->setButtonsForLine(2, array());
     */
     $oFields = new FieldList(new TextField('Header', 'Titel'), $fldBody = new HtmlEditorField('Body', 'Inhoud'), new HeaderField('hdrLink', 'Link', 3), new TextField('LinkTxt', 'Tekst link'), $fldSelectionGroup);
     $fldBody->setRows(6);
     // assign the "footer" TinyMCE config to this field
     $fldBody->setEditorConfig('simpletoolbar');
     // set the editor's body class.  This will make it class="typography footer-content"
     $fldBody->setBodyClass('widget_text typograhy');
     return $oFields;
 }
 /**
  * HTML for the column, content of the <td> element.
  *
  * @param  GridField $gridField
  * @param  DataObject $record - Record displayed in this row
  * @param  string $columnName
  * @return string - HTML for the column. Return NULL to skip.
  */
 public function getColumnContent($gridField, $record, $columnName)
 {
     $field = new TextField('MetaTitle');
     $value = $gridField->getDataFieldValue($record, $columnName);
     $value = $this->formatValue($gridField, $record, $columnName, $value);
     $field->setName($this->getFieldName($field->getName(), $gridField, $record));
     $field->setValue($value);
     return $field->Field() . $this->getErrorMessages();
 }
 /**
  * @param string $name
  *
  * @return AddressFinderField
  */
 public function setName($name)
 {
     parent::setName($name);
     $this->addressField->setName("{$name}[Address]");
     foreach ($this->getManualFields() as $field) {
         $nested = $this->getNestedFieldName($field);
         $field->setName("{$name}[{$nested}]");
     }
     return $this;
 }
 /**
  * Title field of the field in the backend of the page
  *
  * @return TextField
  */
 public function TitleField()
 {
     $label = _t('EditableFormField.ENTERQUESTION', 'Enter Question');
     $field = new TextField('Title', $label, $this->getField('Title'));
     $field->setName($this->getFieldName('Title'));
     if (!$this->canEdit()) {
         return $field->performReadonlyTransformation();
     }
     return $field;
 }
 /**
  * Title field of the field in the backend of the page
  *
  * @return TextField
  */
 function TitleField()
 {
     //do not XML escape the title field here, because that would result in a recursive escaping of the escaped text on every save
     $field = new TextField('Title', _t('EditableFormField.ENTERQUESTION', 'Enter Question'), $this->getField('Title'));
     $field->setName($this->getFieldName('Title'));
     if (!$this->canEdit()) {
         return $field->performReadonlyTransformation();
     }
     return $field;
 }
 /**
  * Title field of the field in the backend of the page
  *
  * @return TextField
  */
 function TitleField()
 {
     $field = new TextField('Title', _t('EditableFormField.ENTERQUESTION', 'Enter Question'), Convert::raw2att($this->Title));
     $field->setName($this->getFieldName('Title'));
     if (!$this->canEdit()) {
         return $field->performReadonlyTransformation();
     }
     return $field;
 }
 /**
  * Generate TextField object
  *
  * @param string $name
  * @param string $title
  * @return TextField 
  */
 protected function getTextField($name, $title)
 {
     $label = _t('EditableField.FIELDNAME', $title);
     $field = new TextField($name, $label, $this->getField($name));
     $field->setName($this->getFieldName($name));
     $field->addExtraClass('small');
     $field->setAttribute('placeholder', $label);
     return $field;
 }