~josephjamesmills/zpanelcp/zpanelcp

« back to all changes in this revision

Viewing changes to var/www/zpanel/dryden/ui/tpl/year.class.php

  • Committer: Joseph Mills
  • Date: 2012-05-09 02:52:32 UTC
  • Revision ID: josephjamesmills@gmail.com-20120509025232-ob5xni0ggrse28c0
setup framwork for www

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
/**
 
4
 * Generic template place holder class.
 
5
 * @package zpanelx
 
6
 * @subpackage dryden -> ui -> tpl
 
7
 * @version 1.0.0
 
8
 * @author Bobby Allen (ballen@zpanelcp.com)
 
9
 * @copyright ZPanel Project (http://www.zpanelcp.com/)
 
10
 * @link http://www.zpanelcp.com/
 
11
 * @license GPL (http://www.gnu.org/licenses/gpl.html)
 
12
 */
 
13
class ui_tpl_year {
 
14
 
 
15
    public function Template() {
 
16
        return date('Y');
 
17
    }
 
18
 
 
19
}
 
20
 
 
21
?>