Subversion Repositories LCARS

Rev

Rev 173 | Rev 192 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 173 Rev 186
1
<?php
1
<?php
2
2
3
class IndexView extends View
3
class IndexView extends \PointedEars\PHPX\View
4
{
4
{
5
  /**
5
  /**
6
   * Creates a new index view
6
   * Creates a new index view
7
   *
7
   *
8
   * @see View::__construct()
8
   * @see View::__construct()
9
   */
9
   */
10
  public function __construct ($template)
10
  public function __construct ($template)
11
  {
11
  {
12
    parent::__construct('application/layouts/index/index.phtml');
12
    parent::__construct('application/layouts/index/index.phtml');
13
  }
13
  }
14
}
14
}