~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/app/controllers/themes_controller.php

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
* Themes Controller
 
4
 
5
* @author Geoffrey
 
6
*
 
7
* The following will be filled automatically by SubVersion!
 
8
* Do not change by hand!
 
9
*  $LastChangedDate: $
 
10
*  $LastChangedBy:  $
 
11
*  $LastChangedRevision: $
 
12
*
 
13
*/
 
14
 
 
15
class ThemesController extends AppController {
 
16
        
 
17
        var $name = 'Themes';
 
18
        var $uses = array('Theme');
 
19
        
 
20
        function admin_index () {
 
21
                
 
22
                //TODO:List the themes installed
 
23
        }
 
24
        
 
25
        function admin_add() {
 
26
                
 
27
                //TODO:Add a theme
 
28
        }
 
29
        
 
30
        function admin_delete ($id) {
 
31
                //TODO:Delete a theme
 
32
        }
 
33
        
 
34
        function admin_activate($id) {
 
35
                //TODO:Set the displayed theme
 
36
        }
 
37
}
 
 
b'\\ No newline at end of file'