Esempio n. 1
0
 /**
  * Checks if a $evalValue is set in a field
  *
  * @param string $fieldKey TCA Type
  * @param string $elementKey key of the element
  * @param string $evalValue value to search for
  * @return boolean $evalValue is set
  * @author Benjamin Butschell bb@webprofil.at>
  */
 public function render($fieldKey, $elementKey, $evalValue)
 {
     $this->utility = new \MASK\Mask\Utility\MaskUtility($this->objectManager);
     $type = $this->utility->getFieldType($fieldKey, $elementKey);
     return $this->utility->isBlindLinkOptionSet($fieldKey, $evalValue, $type);
 }