protected function renderRightHandSide()
 {
     $str = $this->renderInstallLink();
     if (!is_null($str)) {
         $str .= OpfHelperHtml::pipe();
     }
     // if
     $str .= $this->renderHelpLink();
     return $str;
 }
Exemplo n.º 2
0
 public function render()
 {
     $str = '<div class="' . self::CLASS_DIV_SUBPANEL . '" width="100%">' . OpfHelperHtml::tableHeader('100%') . '<tr><td width="100%">' . implode(OpfHelperHtml::pipe(), $this->choiceArray) . '</td></tr>' . '</table></div>';
     return $str;
 }