Page

Navigation:  Development > MVC (Model View Controller) > View > Theme >

Page

Previous pageReturn to chapter overviewNext page

Page view used to display content of Page Manager. Below template work with
 
/development/view/[theme]/page/view.phtml

 

This page display data created by Page Manager in admin panel. Here is  a sample code of view template:

 

<?php if (App::Config()->setting('disable_quick_links') == 'Yes'): ?>
    <?php echo App::Module('Universal_Formating')->pageFormated($page_content['id']); ?>
<?php else: ?>

    <div class="grid_3">

          <?php echo $this->callElement("quicklinks"); ?>

    </div>
    <div class="grid_13">

          <?php echo App::Module('Universal_Formating')->pageFormated($page_content['id']); ?>

    </div>

<?php endif; ?>