PageRenderTime 40ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/pdf/code/trunk/administrator/components/com_artofpdf/views/com_content/tmpl/sections.php

https://bitbucket.org/eddieajau/the-art-of-joomla-archive
PHP | 42 lines | 21 code | 11 blank | 10 comment | 0 complexity | 542e7b6520b558eb64dd49cd91a88053 MD5 | raw file
  1. <?php
  2. /**
  3. * @version $Id: sections.php 278 2010-09-14 11:11:09Z eddieajau $
  4. * @package NewLifeInIT
  5. * @subpackage com_artofpdf
  6. * @copyright Copyright 2010 New Life in IT Pty Ltd. All rights reserved.
  7. * @license GNU General Public License version 2 or later.
  8. * @link http://www.theartofjoomla.com
  9. */
  10. // No direct access
  11. defined('_JEXEC') or die;
  12. JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
  13. //JHtml::stylesheet('default.css', 'administrator/components/com_artofpdf/media/css/');
  14. $sections = $this->get('Sections');
  15. ?>
  16. <?php foreach ($sections as $section) : ?>
  17. <!--NEWPAGE-->
  18. <!--BOOKMARK0 <?php echo $this->escape($section->title); ?>-->
  19. <h1><?php echo $this->escape($section->title); ?></h1>
  20. <?php echo $section->description; ?>
  21. <?php foreach ($section->categories as $category) : ?>
  22. <!--BOOKMARK1 <?php echo $this->escape($category->title); ?>-->
  23. <h2><?php echo $this->escape($category->title); ?></h2>
  24. <?php echo $category->description; ?>
  25. <?php foreach ($category->articles as $article) : ?>
  26. <!--BOOKMARK2 <?php echo $this->escape($article->title); ?>-->
  27. <h3><?php echo $this->escape($article->title); ?></h3>
  28. <?php echo $article->introtext/*.$article->fulltext*/; ?>
  29. <?php endforeach; ?>
  30. <?php endforeach; ?>
  31. <?php endforeach; ?>