Subversion Repositories LCARS

Rev

Rev 186 | Go to most recent revision | Details | Last modification | View Log | RSS feed

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