コード例 #1
0
 public function renderElementPostfix(Customweb_Form_IElement $element)
 {
     if ($element instanceof Customweb_Form_HiddenElement) {
         return '';
     }
     $output = '';
     if ($this->showScope) {
         $output .= '</td><td class="scope-label">';
         if ($element->getControl() instanceof Customweb_Form_Control_IEditableControl) {
             $output .= '[' . ($element->isGlobalScope() ? 'GLOBAL' : 'STORE VIEW') . ']';
         }
     }
     $output .= '</td><td></td></tr>';
     return $output;
 }