mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
use pane function from parent class
This commit is contained in:
parent
a3caa4a0c1
commit
23b1ab9e06
|
@ -31,12 +31,8 @@
|
|||
*/
|
||||
class SeedDMS_View_Settings extends SeedDMS_Theme_Style {
|
||||
|
||||
protected function showPaneHeader($name, $title, $isactive) { /* {{{ */
|
||||
echo '<li class="nav-item '.($isactive ? 'active' : '').'"><a class="nav-link '.($isactive ? 'active' : '').'" data-target="#'.$name.'" data-toggle="tab" role="tab">'.$title.'</a></li>'."\n";
|
||||
} /* }}} */
|
||||
|
||||
protected function showStartPaneContent($name, $isactive) { /* {{{ */
|
||||
echo '<div class="tab-pane'.($isactive ? ' active' : '').'" id="'.$name.'" role="tabpanel">';
|
||||
self::parent($name, $isactive);
|
||||
$this->contentContainerStart();
|
||||
echo '<table class="table-condensed table-sm" style="table-layout: fixed;">';
|
||||
echo '<tr><td width="20%"></td><td width="80%"></td></tr>';
|
||||
|
@ -45,7 +41,7 @@ class SeedDMS_View_Settings extends SeedDMS_Theme_Style {
|
|||
protected function showEndPaneContent($name, $currentab) { /* {{{ */
|
||||
echo '</table>';
|
||||
$this->contentContainerEnd();
|
||||
echo '</div>';
|
||||
self::parent($name, $isactive);
|
||||
} /* }}} */
|
||||
|
||||
protected function getTextField($name, $value, $type='', $placeholder='') { /* {{{ */
|
||||
|
|
Loading…
Reference in New Issue
Block a user