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 84
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info/actions
END
actions.class.php
K 25
svn:wc:ra_dav:version-url
V 102
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info/actions/actions.class.php
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info/actions
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
actions.class.php
file
2010-07-31T05:41:48.000000Z
e3a2f61e730f6b7be7ae36783deac827
2009-05-28T02:14:48.119086Z
25
ben
1879

View File

@@ -0,0 +1,112 @@
<?php
/**
* info actions.
*
* @package pae
* @subpackage info
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class infoActions extends sfActions
{
/**
* Executes the film action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeFilm()
{
}
/**
* Executes index action
*
*/
public function executeIndex()
{
$this->forward('default', 'module');
}
/**
* Executes legal action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLegal()
{
}
/**
* Move announcement page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeMoveannouncement()
{
}
/**
* References action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeReferences()
{
}
/**
* Translations page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeTranslations()
{
}
/**
* Subsidies page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSubsidies()
{
}
/**
* Links page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLinks()
{
}
/**
* Contact page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeContact()
{
}
/**
* Events page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeEvents()
{
$this->events = EventPeer::getActive();
foreach($this->events as $e)
$e->setCulture($this->getUser()->getCulture());
}
}

View File

@@ -0,0 +1,123 @@
<?php
/**
* info actions.
*
* @package pae
* @subpackage info
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class infoActions extends sfActions
{
/**
* Executes the film action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeFilm()
{
}
/**
* Executes news action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeNews()
{
}
/**
* Executes index action
*
*/
public function executeIndex()
{
$this->forward('default', 'module');
}
/**
* Executes legal action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLegal()
{
}
/**
* Move announcement page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeMoveannouncement()
{
}
/**
* References action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeReferences()
{
}
/**
* Translations page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeTranslations()
{
}
/**
* Subsidies page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSubsidies()
{
}
/**
* Links page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLinks()
{
}
/**
* Contact page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeContact()
{
}
/**
* Events page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeEvents()
{
$this->events = EventPeer::getActive();
foreach($this->events as $e)
$e->setCulture($this->getUser()->getCulture());
}
}