예제 #1
0
 /**
  * Retrieve config data value by field name
  *
  * @param string $fieldName
  * @return mixed
  */
 protected function getMethodConfigData($fieldName)
 {
     if ($this->method instanceof TransparentInterface) {
         return $this->method->getConfigInterface()->getValue($fieldName);
     }
     return $this->method->getConfigData($fieldName);
 }