Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
/*
4
 * This file is part of the symfony package.
5
 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
 
11
/**
12
 * defaultActions module.
13
 *
14
 * @package    symfony
15
 * @subpackage action
16
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
17
 * @version    SVN: $Id: actions.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
18
 */
19
class defaultActions extends sfActions
20
{
21
  /**
22
   * Congratulations page for creating an application
23
   *
24
   */
25
  public function executeIndex()
26
  {
27
  }
28
 
29
  /**
30
   * Congratulations page for creating a module
31
   *
32
   */
33
  public function executeModule()
34
  {
35
  }
36
 
37
  /**
38
   * Error page for page not found (404) error
39
   *
40
   */
41
  public function executeError404()
42
  {
43
  }
44
 
45
  /**
46
   * Warning page for restricted area - requires login
47
   *
48
   */
49
  public function executeSecure()
50
  {
51
  }
52
 
53
  /**
54
   * Warning page for restricted area - requires credentials
55
   *
56
   */
57
  public function executeLogin()
58
  {
59
  }
60
 
61
  /**
62
   * Module disabled in settings.yml
63
   *
64
   */
65
  public function executeDisabled()
66
  {
67
  }
68
}