Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ public function display($tpl = null)
}

$this->addToolbar();
$this->sidebar = \JHtmlSidebar::render();

return parent::display($tpl);
}
Expand Down Expand Up @@ -147,7 +146,5 @@ protected function addToolbar()
}

ToolbarHelper::help('JHELP_EXTENSIONS_TEMPLATE_MANAGER_STYLES');

\JHtmlSidebar::setAction('index.php?option=com_templates&view=styles');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,5 @@ protected function addToolbar()
}

ToolbarHelper::help('JHELP_EXTENSIONS_TEMPLATE_MANAGER_TEMPLATES');

\JHtmlSidebar::setAction('index.php?option=com_templates&view=templates');

$this->sidebar = \JHtmlSidebar::render();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@
?>
<form action="<?php echo Route::_('index.php?option=com_templates&view=styles'); ?>" method="post" name="adminForm" id="adminForm">
<div class="row">
<div id="j-sidebar-container" class="col-md-2">
<?php echo $this->sidebar; ?>
</div>
<div class="col-md-10">
<div class="col-md-12">
<div id="j-main-container" class="j-main-container">
<?php echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this, 'options' => array('selectorFieldName' => 'client_id'))); ?>
<?php if ($this->total > 0) : ?>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@

<form action="<?php echo Route::_('index.php?option=com_templates&view=templates'); ?>" method="post" name="adminForm" id="adminForm">
<div class="row">
<div id="j-sidebar-container" class="col-md-2">
<?php echo $this->sidebar; ?>
</div>
<div class="col-md-10">
<div class="col-md-12">
<div id="j-main-container" class="j-main-container">
<?php echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this, 'options' => array('selectorFieldName' => 'client_id'))); ?>
<?php if ($this->total > 0) : ?>
Expand Down