D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
application
/
default
/
views
/
scripts
/
partials
/
Filename :
tabs.phtml
back
Copy
<?php // Copyright 1999-2025. WebPros International GmbH. All rights reserved. ?> <?php if ($this->tabs) : ?> <script type="text/javascript"> //<![CDATA[ (function () { var renderTo = '<?php echo $this->renderTo; ?>' || 'main'; var renderTabs = function () { new Jsw.bar.Tabs({ cls: 'tabs', renderTo: renderTo, <?php if ($this->renderMode): ?> renderMode: '<?php echo $this->renderMode; ?>', <?php endif; ?> items: <?php echo is_array($this->tabs) ? Zend_Json::encode($this->tabs) : $this->tabs; ?> }); }; if (document.getElementById(renderTo)) { renderTabs(); } else { Jsw.onReady(renderTabs); } })(); //]]> </script> <?php endif; ?>