コード例 #1
0
 public function get_html()
 {
     $html = '<div class="wrap">';
     if ($this->icon != '') {
         $html .= '<div id="icon-' . $this->icon . '" class="icon32"></div>';
     }
     $html .= '<h2>' . $this->title . '</h2>';
     $html .= parent::get_html();
     $html .= '</div>';
     return $html;
 }
コード例 #2
0
 function get_html()
 {
     $html = wp_nonce_field($this->option_group, $this->option_group . '_nonce');
     $html .= parent::get_html();
     return $html;
 }