SAAS-289: Remove all isSaaS checks
This commit is contained in:
parent
3f7d8a0c7f
commit
38d28d3346
16 changed files with 17 additions and 611 deletions
|
@ -1,9 +1,3 @@
|
|||
<?php
|
||||
$isSaas = true;
|
||||
if(Application_Model_Preference::GetPlanLevel() == "disabled"){
|
||||
$isSaas = false;
|
||||
}
|
||||
?>
|
||||
<ul id="nav">
|
||||
<?php foreach ($this->container as $page) : ?>
|
||||
<?php if($this->navigation()->accept($page)) : ?>
|
||||
|
@ -14,7 +8,7 @@
|
|||
</a>
|
||||
<ul class="sub">
|
||||
<?php foreach ($page->getPages() as $sub) :
|
||||
if($isSaas && $sub->getId() == "manage_folder"){
|
||||
if($sub->getId() == "manage_folder"){
|
||||
continue;
|
||||
} ?>
|
||||
<li>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue