initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 86
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/data/symfony/modules/default/actions
END
actions.class.php
K 25
svn:wc:ra_dav:version-url
V 104
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/data/symfony/modules/default/actions/actions.class.php
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/data/symfony/modules/default/actions
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
actions.class.php
file
2010-07-31T05:42:45.000000Z
cc06b34f85b931bf9b1de6b1ac795288
2009-05-28T02:14:48.119086Z
25
ben
1332

View File

@@ -0,0 +1,76 @@
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* defaultActions module.
*
* @package symfony
* @subpackage action
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: actions.class.php 3313 2007-01-20 07:00:37Z fabien $
*/
class defaultActions extends sfActions
{
/**
* Congratulations page for creating an application
*
*/
public function executeIndex()
{
}
/**
* Congratulations page for creating a module
*
*/
public function executeModule()
{
}
/**
* Error page for page not found (404) error
*
*/
public function executeError404()
{
}
/**
* Warning page for restricted area - requires login
*
*/
public function executeSecure()
{
}
/**
* Warning page for restricted area - requires credentials
*
*/
public function executeLogin()
{
}
/**
* Website temporarily unavailable
*
*/
public function executeUnavailable()
{
}
/**
* Website disabled by the site administrator (in settings.yml)
*
*/
public function executeDisabled()
{
}
}

View File

@@ -0,0 +1,76 @@
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* defaultActions module.
*
* @package symfony
* @subpackage action
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version SVN: $Id: actions.class.php 3313 2007-01-20 07:00:37Z fabien $
*/
class defaultActions extends sfActions
{
/**
* Congratulations page for creating an application
*
*/
public function executeIndex()
{
}
/**
* Congratulations page for creating a module
*
*/
public function executeModule()
{
}
/**
* Error page for page not found (404) error
*
*/
public function executeError404()
{
}
/**
* Warning page for restricted area - requires login
*
*/
public function executeSecure()
{
}
/**
* Warning page for restricted area - requires credentials
*
*/
public function executeLogin()
{
}
/**
* Website temporarily unavailable
*
*/
public function executeUnavailable()
{
}
/**
* Website disabled by the site administrator (in settings.yml)
*
*/
public function executeDisabled()
{
}
}