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,5 @@
K 25
svn:wc:ra_dav:version-url
V 71
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules
END

View File

@@ -0,0 +1,55 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
whoarewe
dir
courses
dir
default
dir
whatdowedo
dir
where
dir
info
dir
howdowedoit
dir
layout
dir
user
dir

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 79
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses
END

View File

@@ -0,0 +1,46 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
i18n
dir
actions
dir
config
dir
lib
dir
validate
dir
templates
dir

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 87
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/actions
END
actions.class.php
K 25
svn:wc:ra_dav:version-url
V 105
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/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/courses/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:47.000000Z
f03dabb92fa1b1498fbbf83afdb74904
2009-05-28T02:14:48.119086Z
25
ben
13106

View File

@@ -0,0 +1,458 @@
<?php
/**
* courses actions.
*
* @package pae
* @subpackage courses
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class coursesActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
$c = new Criteria();
$c->addAscendingOrderByColumn(CoursePeer::SLUG);
$this->courses = CoursePeer::doSelect($c);
foreach($this->courses as $c)
$c->setCulture($this->getUser()->getCulture());
}
/**
* List page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeList()
{
//$this->Transform();
$this->forward('courses', 'index');
}
/**
* Prices actions
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executePrices()
{
}
/**
* Shows a course description
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeCourse()
{
$slug = $this->getRequestParameter("courseNameSlug");
$course = CoursePeer::getBySlug($slug);
if(!$course)
{
$this->forward404();
}
$course = $course[0];
$course->setCulture($this->getUser()->getCulture());
$this->course = $course;
}
/**
* Public courses page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executePubliccourses()
{
}
/**
* Schedule page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSchedule()
{
}
private function Transform()
{
$path = sfConfig::get('sf_data_dir')."/xml/courses";
$allFiles = scandir($path);
$files = array();
for($c = 0; $c < count($allFiles); $c++)
{
if(substr($allFiles[$c], -3) == "xml")
array_push($files, $allFiles[$c]);
}
foreach($files as $file)
{
$data = xml_parse_file($path."/".$file);
$en = html_print_xml_page($data['page']['en']);
$de = html_print_xml_page($data['page']['de']);
$en = str_replace("<p><strong>For more information and reservations:</strong>","", $en);
$en = str_replace("<a href='/pae.php/en/display/contact'>contact information</a></p>", "", $en);
$de = str_replace("<p><strong>Weitere Informationen und Reservierungen unter:</strong>", "", $de);
$de = str_replace("<a href='/pae.php/de/display/contact'>Kontaktinformation</a></p>", "", $de);
$course = new Course();
$course->setSlug(str_replace(" ", "", strtolower($data['page']['en']['name'])));
//$xml = simplexml_load_file(sfConfig::get('sf_data_dir')."/xml/courses/".$file);
$course->setCulture('en');
$course->setTitle($data['page']['en']['name']);
$course->setDescription($en);
$course->setCulture('de');
$course->setTitle($data['page']['de']['name']);
$course->setDescription($de);
$course->save();
}
}
}
function html_print_xml_page($data)
{
$page_name = $data['name'];
$page_content = '';
$sections = 0;
$paras = 0;
isset($data['content']['section'])
? $sections = 1
: $paras = 1;
if($sections ) {
$contents = xml_force_array($data['content']['section']);
$page_content = html_print_sections($contents);
}
else if($paras) {
$contents = xml_force_array($data['content']['para']);
$page_content = html_print_paragraphs($contents);
}
//print "<div class='page_subtitle'>$page_name</div>\n";
//print "<div class='page_content'>\n";
return $page_content;
//print "</div>\n";
}
###################################################################################################### print sections of an xml page
# parameters: 1) array of sections to print
# returns: the html for the sections
function html_print_sections(&$sections)
{
$page_content = '';
foreach($sections as $sec) {
$page_content .= "<div class='text_div'>\n";
$page_content .= "<div class='text_header' id='{$sec['name']}'>{$sec['name']}</div>\n";
$page_content .= "<div class='text'>\n";
$paras = xml_force_array($sec['text']['para']);
$page_content .= html_print_paragraphs($paras);
$page_content .= "</div>\n";
$page_content .= "</div>\n";
}
return $page_content;
}
###################################################################################################### print paragraphs of an xml page
# parameters: 1) array of paragraphs to print
# returns: the html for the paragraphs
function html_print_paragraphs(&$paragraphs)
{
$page_content = '';
foreach($paragraphs as $para) {
$page_content .= '<p>';
if(is_array($para)) {
foreach($para as $key => $value) {
switch($key) {
case 'line':
if(is_array($value)) {
foreach($value as $line) { $page_content .= '<br />'.$line; }
}
else { $page_content .= '<br />'.$value; }
break;
case 'paracontent':
$page_content .= $value;
break;
case 'list':
$page_content .= "<ul>\n";
foreach($para['list']['listitem'] as $item) {
$page_content .= "<li>$item</li>\n";
}
$page_content .= "</ul>\n";
break;
case 'heading':
$page_content .= "<strong>$value</strong>\n";
break;
case 'link':
if(is_array($value)) {
$page_content .= " <a href='{$value['href']}'>{$value['linktext']}</a>";
}
else { $page_content .= " <a href='$value'>$value</a>"; }
break;
case 'image':
$images = xml_force_array($para['image']);
$page_content .= html_print_images($images);
break;
default:
break;
}
}
}
else { $page_content .= $para; }
$page_content .= "</p>\n";
}
return $page_content;
}
###################################################################################################### print images of an xml page
# parameters: 1) array of images to print
# returns: the html for the images
function html_print_images(&$images)
{
$page_content = '';
foreach($images as $image) {
if(is_array($image)) {
foreach($image as $key => $value) {
switch($key) {
case 'link':
$page_content .= "<a href='$value'><img src='/pae.co.at/graphics/{$image['path']}' ";
$page_content .= "target='_blank' border='0' /></a>\n";
break;
default:
break;
}
}
}
else { $page_content .= "<img src='/pae.co.at/graphics/{$image}' border='0' align='right' />\n"; }
}
return $page_content;
}
function xml_parse_file($xml_file)
{
$xml = '';
$data = array();
# first we don't want to waste time, so make sure the file to open exists
if(file_exists($xml_file))
{
# put entire file contents in $xml
$xml = file_get_contents($xml_file);
# if the file is empty, return and error
if(empty($xml)) {
return('XML document is empty.');
}
}
# if the file doesn't exist return an error
else { return("Could not find xml file."); }
# this pattern matches the first line of every xml doc, the <?xml line
$patt = "/^<\?xml([^\?]*)\?>/";
# try to find this mandatory opening <?xml line
if(preg_match($patt,$xml,$matches))
{
# get the xml specs inside the <?xml line
$xml_specs = explode(' ',$matches[1]);
foreach($xml_specs as $spec)
{
# if a spec is empty for some reason, don't attempt to work with it,
# just continue to next one
if(empty($spec)) { continue; }
# specs are always in the name='value' format
list($name,$value) = explode('=',$spec);
# strip away any quotes from the value side of the '='
$value = str_replace("'",'',$value);
$value = str_replace('"','',$value);
# assign these xml specs to the data array
$data[$name] = $value;
}
$xml = substr($xml,strlen($matches[0]));
}
# if we don't find that mandatory opening <?xml line, return an error
else { return('XML document missing opening xml tag.'); }
# xml_left is a heap, initialize with all xml at first
$xml_left = array($xml);
# tmp_refs is also a heap, holding references to points in the xml document
$tmp_refs[] =& $data;
# we will use this pattern to recognize an opening xml tag
$patt = "/^<(\w+)([^>]*)>/";
# we continue through the xml until nothing is left in $xml_left
while(!empty($xml_left))
{
# the last element of $xml_left is always the high priority,
# so process it next
$to_process = array_pop($xml_left);
# trim fore and aft spaces from the xml to process
$to_process = trim($to_process);
# the last index of our tmp_refs array, important later
$last_index = count($tmp_refs) - 1;
# attempt the match the pattern that finds an opening xml tag
if(preg_match($patt,$to_process,$matches)) {
$element = $matches[1];
$parameters = isset($matches[2]) ? $matches[2] : '';
if(isset($tmp_refs[$last_index][$element]))
{
if(is_array($tmp_refs[$last_index][$element]))
{
# case example: [biography]=>[0],[1]...[x]; $element = biography
# endsup: [biography]=>[0],[1]...[x+1]
if(isset($tmp_refs[$last_index][$element][0]))
{
array_push($tmp_refs[$last_index][$element],'');
$tmp_index = count($tmp_refs[$last_index][$element]) - 1;
$tmp_refs[] =& $tmp_refs[$last_index][$element][$tmp_index];
}
# case example: [biography]=>[paragraph]; $element = biography
# endsup: [biography]=>[0]=>[paragraph]
# [1]=>''
else
{
$tmp_ary = $tmp_refs[$last_index][$element];
$tmp_refs[$last_index][$element] = array($tmp_ary,'');
$tmp_refs[] =& $tmp_refs[$last_index][$element][1];
}
}
# case example: [biography]=>"string"; $element = biography
# endsup: [biography]=>[0]=>"string"
# [1]=>''
else
{
$tmp_refs[$last_index][$element] = array($tmp_refs[$last_index][$element],'');
$tmp_refs[] =& $tmp_refs[$last_index][$element][1];
}
}
# case example: [biography]=> NULL; $element = biography
# endsup: [biography]=>""
else
{
$tmp_refs[$last_index][$element] = '';
$tmp_refs[] =& $tmp_refs[$last_index][$element];
}
# if there are parameters, add them as if they were imbedded elements
if(!empty($parameters))
{
$pairs = explode(' ',$parameters);
$last_index = count($tmp_refs) - 1;
# we can do this, because we know the last element added
# is always fresh and new
$tmp_refs[$last_index] = array();
foreach($pairs as $pair)
{
# if a parameter is empty, just continue to next one
if(empty($pair)) { continue; }
list($name,$value) = explode('=',$pair);
$value = str_replace("'",'',$value);
$value = str_replace('"','',$value);
$tmp_refs[$last_index][$name] = $value;
}
}
# we've already found an opening tag, now find the closing tag
$end_tag = strpos($to_process,"</$element>");
# if there is not closing tag--oops! badly formatted xml doc
if($end_tag === FALSE)
{
return("XML document improperly formed.
No closing tag found for element: $element");
}
# get the string length of the opening tag and all the paramters
# inside, plus the opening and closing brackets
$element_len = strlen($matches[0]);
# then, the contents of this xml tag start after the above
# measured length to the end of the $to_process string, minus
# the length of the closing tag
$contents = substr($to_process,$element_len,$end_tag - $element_len);
# if there is text in the $to_process string past this closing
# tag that we just found, put it on top of the $xml_left tag
# it's a sister element of the current one
if($extra = substr($to_process,$end_tag + strlen("</$element>")))
{
array_push($xml_left,$extra);
}
# if not sister elements are found, we are at the end of this
# generation of elements, so place an END indicator in the
# $xml_left array
else
{
array_push($xml_left,'!~~END~~!');
}
array_push($xml_left,$contents);
}
# we place the identifier END to indicate the end of an xml tag that
# has nested tags and no content itself, if this is NOT the case
# we have content to assign the current xml tag
else if($to_process != '!~~END~~!')
{
$tmp_refs[$last_index] = $to_process;
array_pop($tmp_refs);
}
# if we miss the above two ifs, we are at the end of an element
# but don't have content to assign, so step back one generation
# in the xml document
else
{
$tmp = array_pop($tmp_refs);
}
}
# if all went well, we return an associative array with all the xml
# data in it, properly nested
return($data);
}
##################################################### FUNCTION: xml_force_array #
# parameters: path to file to parse
# returns: associative array of xml file data
function xml_force_array($element)
{
$array = array();
if(is_array($element))
{
if(isset($element[0])) { $array = $element; }
else { array_push($array,$element); }
}
else { array_push($array,$element); }
return($array);
}

View File

@@ -0,0 +1,458 @@
<?php
/**
* courses actions.
*
* @package pae
* @subpackage courses
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class coursesActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
$c = new Criteria();
$c->addAscendingOrderByColumn(CoursePeer::SLUG);
$this->courses = CoursePeer::doSelect($c);
foreach($this->courses as $c)
$c->setCulture($this->getUser()->getCulture());
}
/**
* List page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeList()
{
//$this->Transform();
$this->forward('courses', 'index');
}
/**
* Prices actions
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executePrices()
{
}
/**
* Shows a course description
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeCourse()
{
$slug = $this->getRequestParameter("courseNameSlug");
$course = CoursePeer::getBySlug($slug);
if(!$course)
{
$this->forward404();
}
$course = $course[0];
$course->setCulture($this->getUser()->getCulture());
$this->course = $course;
}
/**
* Public courses page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executePubliccourses()
{
}
/**
* Schedule page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSchedule()
{
}
private function Transform()
{
$path = sfConfig::get('sf_data_dir')."/xml/courses";
$allFiles = scandir($path);
$files = array();
for($c = 0; $c < count($allFiles); $c++)
{
if(substr($allFiles[$c], -3) == "xml")
array_push($files, $allFiles[$c]);
}
foreach($files as $file)
{
$data = xml_parse_file($path."/".$file);
$en = html_print_xml_page($data['page']['en']);
$de = html_print_xml_page($data['page']['de']);
$en = str_replace("<p><strong>For more information and reservations:</strong>","", $en);
$en = str_replace("<a href='/pae.php/en/display/contact'>contact information</a></p>", "", $en);
$de = str_replace("<p><strong>Weitere Informationen und Reservierungen unter:</strong>", "", $de);
$de = str_replace("<a href='/pae.php/de/display/contact'>Kontaktinformation</a></p>", "", $de);
$course = new Course();
$course->setSlug(str_replace(" ", "", strtolower($data['page']['en']['name'])));
//$xml = simplexml_load_file(sfConfig::get('sf_data_dir')."/xml/courses/".$file);
$course->setCulture('en');
$course->setTitle($data['page']['en']['name']);
$course->setDescription($en);
$course->setCulture('de');
$course->setTitle($data['page']['de']['name']);
$course->setDescription($de);
$course->save();
}
}
}
function html_print_xml_page($data)
{
$page_name = $data['name'];
$page_content = '';
$sections = 0;
$paras = 0;
isset($data['content']['section'])
? $sections = 1
: $paras = 1;
if($sections ) {
$contents = xml_force_array($data['content']['section']);
$page_content = html_print_sections($contents);
}
else if($paras) {
$contents = xml_force_array($data['content']['para']);
$page_content = html_print_paragraphs($contents);
}
//print "<div class='page_subtitle'>$page_name</div>\n";
//print "<div class='page_content'>\n";
return $page_content;
//print "</div>\n";
}
###################################################################################################### print sections of an xml page
# parameters: 1) array of sections to print
# returns: the html for the sections
function html_print_sections(&$sections)
{
$page_content = '';
foreach($sections as $sec) {
$page_content .= "<div class='text_div'>\n";
$page_content .= "<div class='text_header' id='{$sec['name']}'>{$sec['name']}</div>\n";
$page_content .= "<div class='text'>\n";
$paras = xml_force_array($sec['text']['para']);
$page_content .= html_print_paragraphs($paras);
$page_content .= "</div>\n";
$page_content .= "</div>\n";
}
return $page_content;
}
###################################################################################################### print paragraphs of an xml page
# parameters: 1) array of paragraphs to print
# returns: the html for the paragraphs
function html_print_paragraphs(&$paragraphs)
{
$page_content = '';
foreach($paragraphs as $para) {
$page_content .= '<p>';
if(is_array($para)) {
foreach($para as $key => $value) {
switch($key) {
case 'line':
if(is_array($value)) {
foreach($value as $line) { $page_content .= '<br />'.$line; }
}
else { $page_content .= '<br />'.$value; }
break;
case 'paracontent':
$page_content .= $value;
break;
case 'list':
$page_content .= "<ul>\n";
foreach($para['list']['listitem'] as $item) {
$page_content .= "<li>$item</li>\n";
}
$page_content .= "</ul>\n";
break;
case 'heading':
$page_content .= "<strong>$value</strong>\n";
break;
case 'link':
if(is_array($value)) {
$page_content .= " <a href='{$value['href']}'>{$value['linktext']}</a>";
}
else { $page_content .= " <a href='$value'>$value</a>"; }
break;
case 'image':
$images = xml_force_array($para['image']);
$page_content .= html_print_images($images);
break;
default:
break;
}
}
}
else { $page_content .= $para; }
$page_content .= "</p>\n";
}
return $page_content;
}
###################################################################################################### print images of an xml page
# parameters: 1) array of images to print
# returns: the html for the images
function html_print_images(&$images)
{
$page_content = '';
foreach($images as $image) {
if(is_array($image)) {
foreach($image as $key => $value) {
switch($key) {
case 'link':
$page_content .= "<a href='$value'><img src='/pae.co.at/graphics/{$image['path']}' ";
$page_content .= "target='_blank' border='0' /></a>\n";
break;
default:
break;
}
}
}
else { $page_content .= "<img src='/pae.co.at/graphics/{$image}' border='0' align='right' />\n"; }
}
return $page_content;
}
function xml_parse_file($xml_file)
{
$xml = '';
$data = array();
# first we don't want to waste time, so make sure the file to open exists
if(file_exists($xml_file))
{
# put entire file contents in $xml
$xml = file_get_contents($xml_file);
# if the file is empty, return and error
if(empty($xml)) {
return('XML document is empty.');
}
}
# if the file doesn't exist return an error
else { return("Could not find xml file."); }
# this pattern matches the first line of every xml doc, the <?xml line
$patt = "/^<\?xml([^\?]*)\?>/";
# try to find this mandatory opening <?xml line
if(preg_match($patt,$xml,$matches))
{
# get the xml specs inside the <?xml line
$xml_specs = explode(' ',$matches[1]);
foreach($xml_specs as $spec)
{
# if a spec is empty for some reason, don't attempt to work with it,
# just continue to next one
if(empty($spec)) { continue; }
# specs are always in the name='value' format
list($name,$value) = explode('=',$spec);
# strip away any quotes from the value side of the '='
$value = str_replace("'",'',$value);
$value = str_replace('"','',$value);
# assign these xml specs to the data array
$data[$name] = $value;
}
$xml = substr($xml,strlen($matches[0]));
}
# if we don't find that mandatory opening <?xml line, return an error
else { return('XML document missing opening xml tag.'); }
# xml_left is a heap, initialize with all xml at first
$xml_left = array($xml);
# tmp_refs is also a heap, holding references to points in the xml document
$tmp_refs[] =& $data;
# we will use this pattern to recognize an opening xml tag
$patt = "/^<(\w+)([^>]*)>/";
# we continue through the xml until nothing is left in $xml_left
while(!empty($xml_left))
{
# the last element of $xml_left is always the high priority,
# so process it next
$to_process = array_pop($xml_left);
# trim fore and aft spaces from the xml to process
$to_process = trim($to_process);
# the last index of our tmp_refs array, important later
$last_index = count($tmp_refs) - 1;
# attempt the match the pattern that finds an opening xml tag
if(preg_match($patt,$to_process,$matches)) {
$element = $matches[1];
$parameters = isset($matches[2]) ? $matches[2] : '';
if(isset($tmp_refs[$last_index][$element]))
{
if(is_array($tmp_refs[$last_index][$element]))
{
# case example: [biography]=>[0],[1]...[x]; $element = biography
# endsup: [biography]=>[0],[1]...[x+1]
if(isset($tmp_refs[$last_index][$element][0]))
{
array_push($tmp_refs[$last_index][$element],'');
$tmp_index = count($tmp_refs[$last_index][$element]) - 1;
$tmp_refs[] =& $tmp_refs[$last_index][$element][$tmp_index];
}
# case example: [biography]=>[paragraph]; $element = biography
# endsup: [biography]=>[0]=>[paragraph]
# [1]=>''
else
{
$tmp_ary = $tmp_refs[$last_index][$element];
$tmp_refs[$last_index][$element] = array($tmp_ary,'');
$tmp_refs[] =& $tmp_refs[$last_index][$element][1];
}
}
# case example: [biography]=>"string"; $element = biography
# endsup: [biography]=>[0]=>"string"
# [1]=>''
else
{
$tmp_refs[$last_index][$element] = array($tmp_refs[$last_index][$element],'');
$tmp_refs[] =& $tmp_refs[$last_index][$element][1];
}
}
# case example: [biography]=> NULL; $element = biography
# endsup: [biography]=>""
else
{
$tmp_refs[$last_index][$element] = '';
$tmp_refs[] =& $tmp_refs[$last_index][$element];
}
# if there are parameters, add them as if they were imbedded elements
if(!empty($parameters))
{
$pairs = explode(' ',$parameters);
$last_index = count($tmp_refs) - 1;
# we can do this, because we know the last element added
# is always fresh and new
$tmp_refs[$last_index] = array();
foreach($pairs as $pair)
{
# if a parameter is empty, just continue to next one
if(empty($pair)) { continue; }
list($name,$value) = explode('=',$pair);
$value = str_replace("'",'',$value);
$value = str_replace('"','',$value);
$tmp_refs[$last_index][$name] = $value;
}
}
# we've already found an opening tag, now find the closing tag
$end_tag = strpos($to_process,"</$element>");
# if there is not closing tag--oops! badly formatted xml doc
if($end_tag === FALSE)
{
return("XML document improperly formed.
No closing tag found for element: $element");
}
# get the string length of the opening tag and all the paramters
# inside, plus the opening and closing brackets
$element_len = strlen($matches[0]);
# then, the contents of this xml tag start after the above
# measured length to the end of the $to_process string, minus
# the length of the closing tag
$contents = substr($to_process,$element_len,$end_tag - $element_len);
# if there is text in the $to_process string past this closing
# tag that we just found, put it on top of the $xml_left tag
# it's a sister element of the current one
if($extra = substr($to_process,$end_tag + strlen("</$element>")))
{
array_push($xml_left,$extra);
}
# if not sister elements are found, we are at the end of this
# generation of elements, so place an END indicator in the
# $xml_left array
else
{
array_push($xml_left,'!~~END~~!');
}
array_push($xml_left,$contents);
}
# we place the identifier END to indicate the end of an xml tag that
# has nested tags and no content itself, if this is NOT the case
# we have content to assign the current xml tag
else if($to_process != '!~~END~~!')
{
$tmp_refs[$last_index] = $to_process;
array_pop($tmp_refs);
}
# if we miss the above two ifs, we are at the end of an element
# but don't have content to assign, so step back one generation
# in the xml document
else
{
$tmp = array_pop($tmp_refs);
}
}
# if all went well, we return an associative array with all the xml
# data in it, properly nested
return($data);
}
##################################################### FUNCTION: xml_force_array #
# parameters: path to file to parse
# returns: associative array of xml file data
function xml_force_array($element)
{
$array = array();
if(is_array($element))
{
if(isset($element[0])) { $array = $element; }
else { array_push($array,$element); }
}
else { array_push($array,$element); }
return($array);
}

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 86
/svn/!svn/ver/37/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/config
END
view.yml
K 25
svn:wc:ra_dav:version-url
V 95
/svn/!svn/ver/37/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/config/view.yml
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/config
http://barnabas/svn
2009-06-03T03:17:42.387690Z
37
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
view.yml
file
2010-07-31T05:41:47.000000Z
cb25bcbf4b7686c95fc75d79ea6a7a0f
2009-06-03T03:17:42.387690Z
37
ben
450

View File

@@ -0,0 +1,21 @@
scheduleSuccess:
metas:
title: 'Pro Active English: Public Courses Schedule'
stylesheets: [schedule]
javascripts: ['jquery-1.2.6.min', schedule]
courseSuccess:
metas:
title: 'Pro Active English: Course'
indexSuccess:
metas:
title: 'Pro Active English: Courses'
pricesSuccess:
metas:
title: 'Pro Active English: Course Prices'
publiccoursesSuccess:
metas:
title: 'Pro Active English: Public Courses'

View File

@@ -0,0 +1,21 @@
scheduleSuccess:
metas:
title: 'Pro Active English: Public Courses Schedule'
stylesheets: [schedule]
javascripts: ['jquery-1.2.6.min', schedule]
courseSuccess:
metas:
title: 'Pro Active English: Course'
indexSuccess:
metas:
title: 'Pro Active English: Courses'
pricesSuccess:
metas:
title: 'Pro Active English: Course Prices'
publiccoursesSuccess:
metas:
title: 'Pro Active English: Public Courses'

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 84
/svn/!svn/ver/41/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/i18n
END
messages.de.xml
K 25
svn:wc:ra_dav:version-url
V 100
/svn/!svn/ver/41/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/i18n/messages.de.xml
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/i18n
http://barnabas/svn
2009-12-11T04:34:11.942976Z
41
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
messages.de.xml
file
2010-07-31T05:41:46.000000Z
c42f9990058550da4d71d5e883a6d466
2009-12-11T04:34:11.942976Z
41
ben
5331

View File

@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff version="1.0">
<file original="global" source-language="en_US" datatype="plaintext">
<body>
<!-- Prices action -->
<trans-unit id='1'>
<source>Price Structure</source>
<target>Unsere Preise</target>
</trans-unit>
<trans-unit id='2'>
<source>Our prices are calculated using 45-minute units.</source>
<target>Unsere Preise basieren auf Unterrichtseinheiten von 45 Minuten.</target>
</trans-unit>
<trans-unit id='3'>
<source>One 45-minute unit normally costs 53,- Euros net. The price is the same for one-to-one training and group training (max. 5 Participants). Prices for larger groups are available on request.</source>
<target>Eine 45-minütige Einheit kostet normalerweise € 53,00 netto. Dieser Preis gilt sowohl für Einzelunterricht als auch für Gruppentrainings (max. 5 TeilnehmerInnen). Preise für größere Gruppen sind auf Anfrage erhältlich.</target>
</trans-unit>
<trans-unit id='4'>
<source>A typical weekly course with 5 people for 1,5 hours a week over 15 weeks costs 1.590,- Euros net. (306,- Euros per person)</source>
<target>Ein typischer wöchentlich stattfindender Kurs mit 5 Personen bei einer Dauer von 90 Minuten über einen Zeitraum von 15 Wochen kostet € 1.590,00 netto (€ 306,00 pro Person).</target>
</trans-unit>
<trans-unit id='5'>
<source>Travel costs are generally charged if the trainer travels to the client. The amount of the travel costs depends on the location of the company. Please contact us for more information on travel costs.</source>
<target>Anreisekosten werden dann verrechnet, wenn der/die TrainerIn zum Kunden fährt. Die Höhe dieser Anreisekosten hängt vom Kundenstandort ab. Bitte kontaktieren Sie uns, wenn Sie mehr Informationen zum Thema Anreisekosten benötigen.</target>
</trans-unit>
<trans-unit id='6'>
<source>All training on our premises and in the 1st and 23rd Districts in Vienna are free of travel costs.</source>
<target>Für Trainings an unseren Kursstandorten und in den Wiener Bezirken 1 und 23 werden keine Anreisekosten verrechnet.</target>
</trans-unit>
<trans-unit id='7'>
<source>Information on our discount scheme for intensive courses and prices for Courses are available on request. See our Course schedule for prices of currentcourses.</source>
<target>Auf Anfrage erhalten Sie gerne Informationen zu unseren Preisnachlässen für Intensivkurse und zu unseren Kurspreisen. Die Preise für laufende Kurse können Sie unserer Kursliste entnehmen.</target>
</trans-unit>
<!-- Public courses page -->
<trans-unit id='8'>
<source>New Courses</source>
<target>Kursangebot</target>
</trans-unit>
<!-- Course pages -->
<trans-unit id='9'>
<source>For more information and reservations:</source>
<target>Weitere Informationen und Reservierungen erhältlich unter:</target>
</trans-unit>
<!-- Index page -->
<trans-unit id='10'>
<source>Available Courses</source>
<target>Verfügbare Kurse</target>
</trans-unit>
<!-- Schedule pages -->
<trans-unit id='11'>
<source>Times</source>
<target>Kurszeiten</target>
</trans-unit>
<trans-unit id='12'>
<source>Dates</source>
<target>Kurstermine</target>
</trans-unit>
<trans-unit id='13'>
<source>Course name</source>
<target>Kursname</target>
</trans-unit>
<trans-unit id='14'>
<source>Level</source>
<target>Level</target>
</trans-unit>
<trans-unit id='15'>
<source>UE</source>
<target>UE</target>
</trans-unit>
<trans-unit id='16'>
<source>Description</source>
<target>Kursdetails</target>
</trans-unit>
<trans-unit id='17'>
<source>Schedule of Public Courses</source>
<target>Öffentliche Kurse</target>
</trans-unit>
<trans-unit id='18'>
<source>Days</source>
<target>Kurstage</target>
</trans-unit>
<trans-unit id='19'>
<source>Test Dates</source>
<target>Prüfungstermin</target>
</trans-unit>
<trans-unit id='20'>
<source>Level Descriptions</source>
<target>Level Beschreibungen</target>
</trans-unit>
<trans-unit id='21'>
<source>Price incl. MwSt.</source>
<target>Preis inkl. MwSt.</target>
</trans-unit>
<trans-unit id='22'>
<source>Summer Special 2009</source>
<target>Sommer Special 2009</target>
</trans-unit>
<trans-unit id='23'>
<source>Category</source>
<target>Kategorie</target>
</trans-unit>
<trans-unit id='24'>
<source>20% discount off normal prices</source>
<target>20% Discount auf die Normalpreise</target>
</trans-unit>
<trans-unit id='25'>
<source>Public Courses</source>
<target>Öffentliche Kurse</target>
</trans-unit>
<trans-unit id='26'>
<source>Participants</source>
<target>Teilnehmer</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff version="1.0">
<file original="global" source-language="en_US" datatype="plaintext">
<body>
<!-- Prices action -->
<trans-unit id='1'>
<source>Price Structure</source>
<target>Unsere Preise</target>
</trans-unit>
<trans-unit id='2'>
<source>Our prices are calculated using 45-minute units.</source>
<target>Unsere Preise basieren auf Unterrichtseinheiten von 45 Minuten.</target>
</trans-unit>
<trans-unit id='3'>
<source>One 45-minute unit normally costs 53,- Euros net. The price is the same for one-to-one training and group training (max. 5 Participants). Prices for larger groups are available on request.</source>
<target>Eine 45-minütige Einheit kostet normalerweise € 53,00 netto. Dieser Preis gilt sowohl für Einzelunterricht als auch für Gruppentrainings (max. 5 TeilnehmerInnen). Preise für größere Gruppen sind auf Anfrage erhältlich.</target>
</trans-unit>
<trans-unit id='4'>
<source>A typical weekly course with 5 people for 1,5 hours a week over 15 weeks costs 1.590,- Euros net. (306,- Euros per person)</source>
<target>Ein typischer wöchentlich stattfindender Kurs mit 5 Personen bei einer Dauer von 90 Minuten über einen Zeitraum von 15 Wochen kostet € 1.590,00 netto (€ 306,00 pro Person).</target>
</trans-unit>
<trans-unit id='5'>
<source>Travel costs are generally charged if the trainer travels to the client. The amount of the travel costs depends on the location of the company. Please contact us for more information on travel costs.</source>
<target>Anreisekosten werden dann verrechnet, wenn der/die TrainerIn zum Kunden fährt. Die Höhe dieser Anreisekosten hängt vom Kundenstandort ab. Bitte kontaktieren Sie uns, wenn Sie mehr Informationen zum Thema Anreisekosten benötigen.</target>
</trans-unit>
<trans-unit id='6'>
<source>All training on our premises and in the 1st and 23rd Districts in Vienna are free of travel costs.</source>
<target>Für Trainings an unseren Kursstandorten und in den Wiener Bezirken 1 und 23 werden keine Anreisekosten verrechnet.</target>
</trans-unit>
<trans-unit id='7'>
<source>Information on our discount scheme for intensive courses and prices for Courses are available on request. See our Course schedule for prices of currentcourses.</source>
<target>Auf Anfrage erhalten Sie gerne Informationen zu unseren Preisnachlässen für Intensivkurse und zu unseren Kurspreisen. Die Preise für laufende Kurse können Sie unserer Kursliste entnehmen.</target>
</trans-unit>
<!-- Public courses page -->
<trans-unit id='8'>
<source>New Courses</source>
<target>Kursangebot</target>
</trans-unit>
<!-- Course pages -->
<trans-unit id='9'>
<source>For more information and reservations:</source>
<target>Weitere Informationen und Reservierungen erhältlich unter:</target>
</trans-unit>
<!-- Index page -->
<trans-unit id='10'>
<source>Available Courses</source>
<target>Verfügbare Kurse</target>
</trans-unit>
<!-- Schedule pages -->
<trans-unit id='11'>
<source>Times</source>
<target>Kurszeiten</target>
</trans-unit>
<trans-unit id='12'>
<source>Dates</source>
<target>Kurstermine</target>
</trans-unit>
<trans-unit id='13'>
<source>Course name</source>
<target>Kursname</target>
</trans-unit>
<trans-unit id='14'>
<source>Level</source>
<target>Level</target>
</trans-unit>
<trans-unit id='15'>
<source>UE</source>
<target>UE</target>
</trans-unit>
<trans-unit id='16'>
<source>Description</source>
<target>Kursdetails</target>
</trans-unit>
<trans-unit id='17'>
<source>Schedule of Public Courses</source>
<target>Öffentliche Kurse</target>
</trans-unit>
<trans-unit id='18'>
<source>Days</source>
<target>Kurstage</target>
</trans-unit>
<trans-unit id='19'>
<source>Test Dates</source>
<target>Prüfungstermin</target>
</trans-unit>
<trans-unit id='20'>
<source>Level Descriptions</source>
<target>Level Beschreibungen</target>
</trans-unit>
<trans-unit id='21'>
<source>Price incl. MwSt.</source>
<target>Preis inkl. MwSt.</target>
</trans-unit>
<trans-unit id='22'>
<source>Summer Special 2009</source>
<target>Sommer Special 2009</target>
</trans-unit>
<trans-unit id='23'>
<source>Category</source>
<target>Kategorie</target>
</trans-unit>
<trans-unit id='24'>
<source>20% discount off normal prices</source>
<target>20% Discount auf die Normalpreise</target>
</trans-unit>
<trans-unit id='25'>
<source>Public Courses</source>
<target>Öffentliche Kurse</target>
</trans-unit>
<trans-unit id='26'>
<source>Participants</source>
<target>Teilnehmer</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 83
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/lib
END

View File

@@ -0,0 +1,28 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/lib
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea

View File

@@ -0,0 +1,35 @@
K 25
svn:wc:ra_dav:version-url
V 89
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/templates
END
courseSuccess.php
K 25
svn:wc:ra_dav:version-url
V 107
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/templates/courseSuccess.php
END
publiccoursesSuccess.php
K 25
svn:wc:ra_dav:version-url
V 114
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/templates/publiccoursesSuccess.php
END
pricesSuccess.php
K 25
svn:wc:ra_dav:version-url
V 107
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/templates/pricesSuccess.php
END
indexSuccess.php
K 25
svn:wc:ra_dav:version-url
V 106
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/templates/indexSuccess.php
END
scheduleSuccess.php
K 25
svn:wc:ra_dav:version-url
V 109
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/templates/scheduleSuccess.php
END

View File

@@ -0,0 +1,198 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/templates
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
courseSuccess.php
file
2010-07-31T05:41:47.000000Z
f36f8f1e1fb260cdad3f9ee2230e877b
2009-05-28T02:14:48.119086Z
25
ben
244
publiccoursesSuccess.php
file
2010-07-31T05:41:47.000000Z
b222353743f173bdc8bd80050774e922
2009-05-28T02:14:48.119086Z
25
ben
1949
pricesSuccess.php
file
2010-07-31T05:41:47.000000Z
6f4cc2ba11dc5fb7f3c87cdc811d1ce8
2009-05-28T02:14:48.119086Z
25
ben
1051
indexSuccess.php
file
2010-07-31T05:41:47.000000Z
e7097d2ef01a1429411080c7fd8eb16d
2009-05-28T02:14:48.119086Z
25
ben
206
scheduleSuccess.php
file
2010-07-31T05:41:47.000000Z
332edd31ea70eacda4bffaa06b790c19
2010-05-21T03:59:05.104047Z
52
ben
16944

View File

@@ -0,0 +1,6 @@
<h2><?php echo $course->getTitle() ?></h2>
<?php echo htmlspecialchars_decode($course->getDescription()) ?>
<p>
<?php echo __("For more information and reservations:") ?>
<?php echo link_to(__("contact information"), "info/contact") ?>
</p>

View File

@@ -0,0 +1,6 @@
<h2><?php echo __("Available Courses") ?></h2>
<ul>
<?php foreach($courses as $course): ?>
<li><?php echo link_to($course->getTitle(), 'courses/'.$course->getSlug()) ?></li>
<?php endforeach; ?>
</ul>

View File

@@ -0,0 +1,19 @@
<h2><?php echo __('Price Structure') ?></h2>
<p>
<?php echo __('Our prices are calculated using 45-minute units.') ?>
</p>
<p>
<?php echo __('One 45-minute unit normally costs 53,- Euros net. The price is the same for one-to-one training and group training (max. 5 Participants). Prices for larger groups are available on request.') ?>
</p>
<p>
<?php echo __('A typical weekly course with 5 people for 1,5 hours a week over 15 weeks costs 1.590,- Euros net. (306,- Euros per person)') ?>
</p>
<p>
<?php echo __('Travel costs are generally charged if the trainer travels to the client. The amount of the travel costs depends on the location of the company. Please contact us for more information on travel costs.') ?>
</p>
<p>
<?php echo __('All training on our premises and in the 1st and 23rd Districts in Vienna are free of travel costs.') ?>
</p>
<p>
<?php echo __('Information on our discount scheme for intensive courses and prices for Courses are available on request. See our Course schedule for prices of currentcourses.') ?>
</p>

View File

@@ -0,0 +1,19 @@
<h2><?php echo __("New Courses") ?></h2>
<ul>
<li><?php echo link_to(__("Cambridge Business English Certificate", null, "courses"), "courses/cambridgebusinessenglishcertificate") ?></li>
<li><?php echo link_to(__("Business Small Talk", null, "courses"), "courses/businesssmalltalk") ?></li>
<li><?php echo link_to(__("Emails", null, "courses"), "courses/emailwritinginenglish") ?></li>
<li><?php echo link_to(__("English for Gastro Professionals", null, "courses"), "courses/englishforgastroprofessionals") ?></li>
<li><?php echo link_to(__("English for Holidays", null, "courses"), "courses/englishforholidays") ?></li>
<li><?php echo link_to(__("English for Legal Professionals", null, "courses"), "courses/englishforlegalprofessionals") ?></li>
<li><?php echo link_to(__("English for Runaways", null, "courses"), "courses/englishforrunaways") ?></li>
<li><?php echo link_to(__("English for Secretaries", null, "courses"), "courses/englishforsecretaries") ?></li>
<li><?php echo link_to(__("English for Shop Assistants", null, "courses"), "courses/englishforshopassistants") ?></li>
<li><?php echo link_to(__("Cambridge First Certificate in English", null, "courses"), "courses/cambridgefirstcertificateinenglish") ?></li>
<li><?php echo link_to(__("General Business Courses", null, "courses"), "courses/generalbusinessenglishcourses") ?></li>
<li><?php echo link_to(__("General English", null, "courses"), "courses/everydayenglish") ?></li>
<li><?php echo link_to(__("General Financial English", null, "courses"), "courses/generalfinancialenglish") ?></li>
<li><?php echo link_to(__("Presentation Language", null, "courses"), "courses/thelanguageofpresentations") ?></li>
<li><?php echo link_to(__("Presentations in English", null, "courses"), "courses/successfulpresentationsinenglish") ?></li>
<li><?php echo link_to(__("Success on the Telephone", null, "courses"), "courses/successonthetelephone") ?></li>
</ul>

View File

@@ -0,0 +1,360 @@
<h2><?php echo __('Summer Courses') ?> 2010</h2>
<!--<?php echo __("Category") ?>:
<select class='tabs'>
<option tabid='1'><?php echo __('Summer Special 2009') ?></option>
<option tabid='2' selected='selected'><?php echo __('Public Courses') ?> 2010</option>
</select>-->
<div class='tab-content-wrapper'>
<div class='tab-content initial-tab' tabid='1'>
<!--<p><?php echo __("20% discount off normal prices") ?></p>-->
<table id="public_courses_2010_table" class='schedule-table'>
<colgroup>
<col class='coursename-col'/>
<col class='days-col'/>
<col class='dates-col'/>
<col class='prices-col'/>
<col />
</colgroup>
<thead>
<th><?php echo __("Course name") ?></th>
<th><?php echo __("Days") ?></th>
<th><?php echo __("Dates") ?></th>
<th><?php echo __("Price incl. MwSt.") ?></th>
<th><?php echo __("Participants") ?></th>
</thead>
<tbody>
<tr class='regular'>
<td><?php echo link_to('English for Banking and Finance', 'courses/englishforbankingandfinance') ?></td>
<td>Mo & Mi, 18.00-19.30</td>
<td>2.8.-25.8.2010, 2 x 1,5 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Shop Assistants', 'courses/englishforshopassistants') ?></td>
<td>Kurs 1: Mittwoch, 8.00-9.30<br />Kurs 2: Montag, 18.30-20.00</td>
<td>7.7.-25.7.2010, 1 x 1,5 h/Woche<br />3.8.-24.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,-<br />€ 148,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Start Up', 'courses/businessstartup') ?> - Elementary Business English</td>
<td>Kurs 1: Donnerstag, 8.00-11.00<br />Kurs 2: Dienstag, 17.30-20:30</td>
<td>6.7.-27.7.2010, 1 x 3 h/Woche<br />3.8.-24.8.2010, 1 x 3 h/Woche</td>
<td>€ 309,-<br />€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intermediate Business English</td>
<td>Kurs 1: Montag, 9.30-12.30<br />Kurs 2: Mittwoch, 17.00-20.00</td>
<td>5.7.-26.7.2010, 1 x 3 h/Woche<br />5.8.-25.8.2010, 1 x 3 h/Woche</td>
<td>€ 309,-<br />€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Gastro Profis', 'courses/englishforgastroprofis') ?></td>
<td>Kurs 1: Dienstag, 9.30-11.00<br />Kurs 2: Donnerstag,15.00-16.30</td>
<td>6.7.-27.7.2010, 1 x 1,5 h/Woche<br />5.8.-26.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,-<br />€ 148,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Elementary</td>
<td>Montag, 18.30-20.00</td>
<td>2.8.-25.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Intermediate</td>
<td>Donnerstag, 18.30-20.00</td>
<td>8.7.-29.7.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Leader - Advanced Business English', 'courses/businessleader') ?></td>
<td>Montag, 9.30-12.30</td>
<td>2.8.-23.8.2010, 1 x 3 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Mittwoch, 18.30-20.00</td>
<td>4.8.-22.9.2010, 1 x 1,5 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Advanced Conversational English', 'courses/advancedconversationalenglish') ?></td>
<td>Kurs 2: Dienstag, 18.30-20.00</td>
<td>3.8.-24.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Startup', 'courses/businessstartup') ?> - Intensive Week Elementary</td>
<td>Montag-Freitag, 8.45-16.00</td>
<td>23.-27-8.2010, 1 Woche</td>
<td>€ 860- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intensive Week Intermediate</td>
<td>Montag-Freitag, 8.45-16.00</td>
<td>02.8.-06.8.2010, 1 Woche</td>
<td>€ 860- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Beginners', 'courses/everydayenglishforbeginners') ?> Intensive Week</td>
<td>Montag-Freitag, 8.45-16.00</td>
<td>23.8.-27-8.2010, 1 Woche</td>
<td>€ 860-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Beginners', 'courses/everydayenglishforbeginners') ?> Fortsetzung</td>
<td>Mittwoch, 18.30-20.00</td>
<td>1.9.-20.10.2010, 1 x 1,5 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>16.8.-18.8.2010, 3 Tage</td>
<td>€ 588,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Sales & Marketing', 'courses/englishforsalesmarketing') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>2.8.-4.8.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Meetings & Negotiations', 'courses/englishformeetingsnegotiations') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>9.8.-11.8.2010</td>
<td>€ 588,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Winning Presentations in English', 'courses/winningpresentationsinenglish') ?></td>
<td>Do - Fr, 9.00-16.00</td>
<td>5.8.-6.8.2010, 2 Tage</td>
<td>€ 392,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('The Language of Presentation', 'courses/thelanguageofpresentations') ?></td>
<td>Mo - Mi, 9.00-16.00</td>
<td>25.7.-27-7.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HR', 'courses/englishforhumanresources') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>16.-18.8.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Hotel Staff', 'courses/englishforhotelstaff') ?></td>
<td>Dienstag, 14.30-16.00</td>
<td>03.8.-24.8.2010, 1x1,5h / Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
</tbody>
</table>
</div>
<!--<div class='tab-content' tabid='2'>
<h3><?php echo __("Schedule of Public Courses") ?> 2009/2010</h3>
<table id="public_courses_20092010_table" class='schedule-table'>
<colgroup>
<col class='coursename-col'/>
<col class='days-col'/>
<col class='dates-col'/>
<col class='prices-col'/>
<col />
</colgroup>
<thead>
<th><?php echo __("Course name") ?></th>
<th><?php echo __("Days") ?></th>
<th><?php echo __("Dates") ?></th>
<th><?php echo __("Price incl. MwSt.") ?></th>
<th><?php echo __("Participants") ?></th>
</thead>
<tbody>
<tr class='regular'>
<td><?php echo link_to('English for Banking and Finance', 'courses/englishforbankingandfinance') ?></td>
<td>Kurs 1: Mittwoch, 8.00-9.30<br />Kurs 2: Mittwoch, 18.30-20.00</td>
<td>7.10.-9.12.2009, 20 UE à 45 Min./Einheit<br />3.3.-5.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Shop Assistants', 'courses/englishforshopassistants') ?></td>
<td>Kurs 1: Dienstag, 8.00-9.30<br />Kurs 2: Montag, 18.30-20.00</td>
<td>3.11.-24.11.2009, 8 UE à 45 Min./Einheit<br />2.3.-23.3.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Start Up', 'courses/businessstartup') ?> - Elementary Business English</td>
<td>Kurs 1: Donnerstag, 18.30-20.00<br />Kurs 2: Donnerstag, 18.30-20.00</td>
<td>8.10.-10.12.2009, 20 UE à 45 Min./Einheit<br />25.2.-6.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intermediate Business English</td>
<td>Kurs 1: Montag, 18.30-20.00<br />Kurs 1: Montag, 18.30-20.00</td>
<td>28.9.-14.12.2009, 20 UE à 45 Min./Einheit<br />1.3.-10.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HORECA Professionals', 'courses/englishforhorecaprofessionals') ?></td>
<td>Kurs 1: Dienstag, 9.30-11.00<br />Kurs 2: Mittwoch, 15.30-17.00</td>
<td>15.9.-6.10.09, 8 UE à 45 Min./Einheit<br />3.-24.3.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Elementary</td>
<td>Kurs 1: Montag, 18.30-20.00<br />Kurs 2: Montag, 18.30-20.00</td>
<td>28.9.-14.12.2009, 20 UE à 45 Min./Einheit<br />1.3.-10.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Intermediate</td>
<td>Mittwoch, 18.30-20.00<br />Mittwoch, 18.30-20.00</td>
<td>7.10.-9.12.2009, 20 UE à 45 Min./Einheit<br />3.3.-5.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Leader', 'courses/businessleader') ?> - Advanced Business English</td>
<td>Kurs 1: Dienstag, 18.30-20.00<br />Kurs 1: Dienstag, 18.30-20.00</td>
<td>6.10.-15.12.2009, 20 UE à 45 Min./Einheit<br />13.4.-15.6.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Kurs 1: Montag, 8.00-9.30<br />Kurs 2: Dienstag, 18.30-20.00</td>
<td>11.1.-1.3.2010, 16 UE à 45 Min./Einheit<br />13.4.-1.6.2010, 16 UE à 45 Min./Einheit</td>
<td>€ 306,-<br />€ 306,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Advanced Conversational English', 'courses/advancedconversationalenglish') ?></td>
<td>Kurs 1: Donnerstag, 18.30-20.00<br />Kurs 1: Donnerstag, 18.30-20.00</td>
<td>19.11.-10.12.2009, 8 UE à 45 Min./Einheit<br />15.4.-6.5.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Startup', 'courses/businessstartup') ?> - Intensive Week Elementary</td>
<td>Kurs 1: Montag-Freitag, 8.45-16.00<br />Kurs 2: Montag-Freitag, 8.45-16.00</td>
<td>9.11.-13.11.2009, 1 Woche<br />3.5.-7.5.2010, 1 Woche</td>
<td>€ 864,-<br />€ 864,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intensive Week Intermediate</td>
<td>Kurs 1: Montag-Freitag, 8.45-16.00<br />Kurs 2: Montag-Freitag, 8.45-16.00</td>
<td>19.-23.10.2009, 1 Woche<br />12.-16.4.2010, 1 Woche</td>
<td>€ 864,-<br />€ 864,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Beginners', 'courses/everydayenglishforbeginners') ?> Intensive Week</td>
<td>Kurs 1: Montag-Freitag, 8.45-16.00<br />Kurs 2: Montag-Freitag, 8.45-16.00</td>
<td>12.-16.10.2009, 1 Woche<br />19.-23.4.2010, 1 Woche</td>
<td>€ 864,-<br />€ 864,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HORECA Professionals', 'courses/englishforhorecaprofessionals') ?></td>
<td>Kurs 1: Donnerstag, 18.30-20.00<br />Kurs 2: Donnerstag, 18.30-20.00</td>
<td>29.10.-17.12.2009, 16 UE à 45 Min./Einheit<br />27.4.-15.6.2010, 16 UE à 45 Min./Einheit</td>
<td>€ 306,-<br />€ 306,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('IELTS Vorbereitung','courses/internationalenglishlanguagetestingsystem') ?></td>
<td>Mittwoch, 17.00-20.00</td>
<td>5.5.-26.5.2010, 12 UE à 45 Min./Einheit</td>
<td>€ 306,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Writing', 'courses/englishforlegalwriting') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>25.1.-27.1.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>7.6.-9.6.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Sales & Marketing', 'courses/englishforsalesmarketing') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>8.3.-10.3.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Meetings & Negotiations', 'courses/englishformeetingsnegotiations') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>15.3.-17.3.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Winning Presentations in English', 'courses/winningpresentationsinenglish') ?></td>
<td>Kurs 1: Do - Fr, 9.00-16.00<br />Kurs 2: Do - Fr, 9.00-16.00</td>
<td>28.1.-29.1.2010, 2 Tage<br />6.5.-7.5.2010, 2 Tage</td>
<td>€ 390,-<br />€ 390,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('The Language of Presentation', 'courses/thelanguageofpresentations') ?></td>
<td>Kurs 1: Mo - Mi, 9.00-16.00<br />Kurs 2: Mo - Mi, 9.00-16.00</td>
<td>21.9.-23.9.2009, 3 Tage<br />15.3.-17.3.2010, 3 Tage</td>
<td>€ 588,-<br />€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HR', 'courses/englishforhumanresources') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>22.2.-24.2.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Hotel Staff', 'courses/englishforhotelstaff') ?></td>
<td>Kurs 1: Mittwoch 16.00-17.30<br />Kurs 2: Dienstag 10.00-11.30</td>
<td>4.11.-25.11.2009, 8 UE à 45 Min./Einheit<br />2.3.-23.3.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
</tbody>
</table>
</div>-->
</div>

View File

@@ -0,0 +1,6 @@
<h2><?php echo $course->getTitle() ?></h2>
<?php echo htmlspecialchars_decode($course->getDescription()) ?>
<p>
<?php echo __("For more information and reservations:") ?>
<?php echo link_to(__("contact information"), "info/contact") ?>
</p>

View File

@@ -0,0 +1,6 @@
<h2><?php echo __("Available Courses") ?></h2>
<ul>
<?php foreach($courses as $course): ?>
<li><?php echo link_to($course->getTitle(), 'courses/'.$course->getSlug()) ?></li>
<?php endforeach; ?>
</ul>

View File

@@ -0,0 +1,19 @@
<h2><?php echo __('Price Structure') ?></h2>
<p>
<?php echo __('Our prices are calculated using 45-minute units.') ?>
</p>
<p>
<?php echo __('One 45-minute unit normally costs 53,- Euros net. The price is the same for one-to-one training and group training (max. 5 Participants). Prices for larger groups are available on request.') ?>
</p>
<p>
<?php echo __('A typical weekly course with 5 people for 1,5 hours a week over 15 weeks costs 1.590,- Euros net. (306,- Euros per person)') ?>
</p>
<p>
<?php echo __('Travel costs are generally charged if the trainer travels to the client. The amount of the travel costs depends on the location of the company. Please contact us for more information on travel costs.') ?>
</p>
<p>
<?php echo __('All training on our premises and in the 1st and 23rd Districts in Vienna are free of travel costs.') ?>
</p>
<p>
<?php echo __('Information on our discount scheme for intensive courses and prices for Courses are available on request. See our Course schedule for prices of currentcourses.') ?>
</p>

View File

@@ -0,0 +1,19 @@
<h2><?php echo __("New Courses") ?></h2>
<ul>
<li><?php echo link_to(__("Cambridge Business English Certificate", null, "courses"), "courses/cambridgebusinessenglishcertificate") ?></li>
<li><?php echo link_to(__("Business Small Talk", null, "courses"), "courses/businesssmalltalk") ?></li>
<li><?php echo link_to(__("Emails", null, "courses"), "courses/emailwritinginenglish") ?></li>
<li><?php echo link_to(__("English for Gastro Professionals", null, "courses"), "courses/englishforgastroprofessionals") ?></li>
<li><?php echo link_to(__("English for Holidays", null, "courses"), "courses/englishforholidays") ?></li>
<li><?php echo link_to(__("English for Legal Professionals", null, "courses"), "courses/englishforlegalprofessionals") ?></li>
<li><?php echo link_to(__("English for Runaways", null, "courses"), "courses/englishforrunaways") ?></li>
<li><?php echo link_to(__("English for Secretaries", null, "courses"), "courses/englishforsecretaries") ?></li>
<li><?php echo link_to(__("English for Shop Assistants", null, "courses"), "courses/englishforshopassistants") ?></li>
<li><?php echo link_to(__("Cambridge First Certificate in English", null, "courses"), "courses/cambridgefirstcertificateinenglish") ?></li>
<li><?php echo link_to(__("General Business Courses", null, "courses"), "courses/generalbusinessenglishcourses") ?></li>
<li><?php echo link_to(__("General English", null, "courses"), "courses/everydayenglish") ?></li>
<li><?php echo link_to(__("General Financial English", null, "courses"), "courses/generalfinancialenglish") ?></li>
<li><?php echo link_to(__("Presentation Language", null, "courses"), "courses/thelanguageofpresentations") ?></li>
<li><?php echo link_to(__("Presentations in English", null, "courses"), "courses/successfulpresentationsinenglish") ?></li>
<li><?php echo link_to(__("Success on the Telephone", null, "courses"), "courses/successonthetelephone") ?></li>
</ul>

View File

@@ -0,0 +1,360 @@
<h2><?php echo __('Summer Courses') ?> 2010</h2>
<!--<?php echo __("Category") ?>:
<select class='tabs'>
<option tabid='1'><?php echo __('Summer Special 2009') ?></option>
<option tabid='2' selected='selected'><?php echo __('Public Courses') ?> 2010</option>
</select>-->
<div class='tab-content-wrapper'>
<div class='tab-content initial-tab' tabid='1'>
<!--<p><?php echo __("20% discount off normal prices") ?></p>-->
<table id="public_courses_2010_table" class='schedule-table'>
<colgroup>
<col class='coursename-col'/>
<col class='days-col'/>
<col class='dates-col'/>
<col class='prices-col'/>
<col />
</colgroup>
<thead>
<th><?php echo __("Course name") ?></th>
<th><?php echo __("Days") ?></th>
<th><?php echo __("Dates") ?></th>
<th><?php echo __("Price incl. MwSt.") ?></th>
<th><?php echo __("Participants") ?></th>
</thead>
<tbody>
<tr class='regular'>
<td><?php echo link_to('English for Banking and Finance', 'courses/englishforbankingandfinance') ?></td>
<td>Mo & Mi, 18.00-19.30</td>
<td>2.8.-25.8.2010, 2 x 1,5 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Shop Assistants', 'courses/englishforshopassistants') ?></td>
<td>Kurs 1: Mittwoch, 8.00-9.30<br />Kurs 2: Montag, 18.30-20.00</td>
<td>7.7.-25.7.2010, 1 x 1,5 h/Woche<br />3.8.-24.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,-<br />€ 148,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Start Up', 'courses/businessstartup') ?> - Elementary Business English</td>
<td>Kurs 1: Donnerstag, 8.00-11.00<br />Kurs 2: Dienstag, 17.30-20:30</td>
<td>6.7.-27.7.2010, 1 x 3 h/Woche<br />3.8.-24.8.2010, 1 x 3 h/Woche</td>
<td>€ 309,-<br />€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intermediate Business English</td>
<td>Kurs 1: Montag, 9.30-12.30<br />Kurs 2: Mittwoch, 17.00-20.00</td>
<td>5.7.-26.7.2010, 1 x 3 h/Woche<br />5.8.-25.8.2010, 1 x 3 h/Woche</td>
<td>€ 309,-<br />€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Gastro Profis', 'courses/englishforgastroprofis') ?></td>
<td>Kurs 1: Dienstag, 9.30-11.00<br />Kurs 2: Donnerstag,15.00-16.30</td>
<td>6.7.-27.7.2010, 1 x 1,5 h/Woche<br />5.8.-26.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,-<br />€ 148,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Elementary</td>
<td>Montag, 18.30-20.00</td>
<td>2.8.-25.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Intermediate</td>
<td>Donnerstag, 18.30-20.00</td>
<td>8.7.-29.7.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Leader - Advanced Business English', 'courses/businessleader') ?></td>
<td>Montag, 9.30-12.30</td>
<td>2.8.-23.8.2010, 1 x 3 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Mittwoch, 18.30-20.00</td>
<td>4.8.-22.9.2010, 1 x 1,5 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Advanced Conversational English', 'courses/advancedconversationalenglish') ?></td>
<td>Kurs 2: Dienstag, 18.30-20.00</td>
<td>3.8.-24.8.2010, 1 x 1,5 h/Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Startup', 'courses/businessstartup') ?> - Intensive Week Elementary</td>
<td>Montag-Freitag, 8.45-16.00</td>
<td>23.-27-8.2010, 1 Woche</td>
<td>€ 860- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intensive Week Intermediate</td>
<td>Montag-Freitag, 8.45-16.00</td>
<td>02.8.-06.8.2010, 1 Woche</td>
<td>€ 860- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Beginners', 'courses/everydayenglishforbeginners') ?> Intensive Week</td>
<td>Montag-Freitag, 8.45-16.00</td>
<td>23.8.-27-8.2010, 1 Woche</td>
<td>€ 860-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Beginners', 'courses/everydayenglishforbeginners') ?> Fortsetzung</td>
<td>Mittwoch, 18.30-20.00</td>
<td>1.9.-20.10.2010, 1 x 1,5 h/Woche</td>
<td>€ 309,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>16.8.-18.8.2010, 3 Tage</td>
<td>€ 588,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Sales & Marketing', 'courses/englishforsalesmarketing') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>2.8.-4.8.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Meetings & Negotiations', 'courses/englishformeetingsnegotiations') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>9.8.-11.8.2010</td>
<td>€ 588,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Winning Presentations in English', 'courses/winningpresentationsinenglish') ?></td>
<td>Do - Fr, 9.00-16.00</td>
<td>5.8.-6.8.2010, 2 Tage</td>
<td>€ 392,- </td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('The Language of Presentation', 'courses/thelanguageofpresentations') ?></td>
<td>Mo - Mi, 9.00-16.00</td>
<td>25.7.-27-7.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HR', 'courses/englishforhumanresources') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>16.-18.8.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Hotel Staff', 'courses/englishforhotelstaff') ?></td>
<td>Dienstag, 14.30-16.00</td>
<td>03.8.-24.8.2010, 1x1,5h / Woche</td>
<td>€ 148,- </td>
<td>3-6</td>
</tr>
</tbody>
</table>
</div>
<!--<div class='tab-content' tabid='2'>
<h3><?php echo __("Schedule of Public Courses") ?> 2009/2010</h3>
<table id="public_courses_20092010_table" class='schedule-table'>
<colgroup>
<col class='coursename-col'/>
<col class='days-col'/>
<col class='dates-col'/>
<col class='prices-col'/>
<col />
</colgroup>
<thead>
<th><?php echo __("Course name") ?></th>
<th><?php echo __("Days") ?></th>
<th><?php echo __("Dates") ?></th>
<th><?php echo __("Price incl. MwSt.") ?></th>
<th><?php echo __("Participants") ?></th>
</thead>
<tbody>
<tr class='regular'>
<td><?php echo link_to('English for Banking and Finance', 'courses/englishforbankingandfinance') ?></td>
<td>Kurs 1: Mittwoch, 8.00-9.30<br />Kurs 2: Mittwoch, 18.30-20.00</td>
<td>7.10.-9.12.2009, 20 UE à 45 Min./Einheit<br />3.3.-5.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Shop Assistants', 'courses/englishforshopassistants') ?></td>
<td>Kurs 1: Dienstag, 8.00-9.30<br />Kurs 2: Montag, 18.30-20.00</td>
<td>3.11.-24.11.2009, 8 UE à 45 Min./Einheit<br />2.3.-23.3.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Start Up', 'courses/businessstartup') ?> - Elementary Business English</td>
<td>Kurs 1: Donnerstag, 18.30-20.00<br />Kurs 2: Donnerstag, 18.30-20.00</td>
<td>8.10.-10.12.2009, 20 UE à 45 Min./Einheit<br />25.2.-6.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intermediate Business English</td>
<td>Kurs 1: Montag, 18.30-20.00<br />Kurs 1: Montag, 18.30-20.00</td>
<td>28.9.-14.12.2009, 20 UE à 45 Min./Einheit<br />1.3.-10.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HORECA Professionals', 'courses/englishforhorecaprofessionals') ?></td>
<td>Kurs 1: Dienstag, 9.30-11.00<br />Kurs 2: Mittwoch, 15.30-17.00</td>
<td>15.9.-6.10.09, 8 UE à 45 Min./Einheit<br />3.-24.3.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Elementary</td>
<td>Kurs 1: Montag, 18.30-20.00<br />Kurs 2: Montag, 18.30-20.00</td>
<td>28.9.-14.12.2009, 20 UE à 45 Min./Einheit<br />1.3.-10.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Office English', 'courses/officeenglish') ?> - Intermediate</td>
<td>Mittwoch, 18.30-20.00<br />Mittwoch, 18.30-20.00</td>
<td>7.10.-9.12.2009, 20 UE à 45 Min./Einheit<br />3.3.-5.5.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Leader', 'courses/businessleader') ?> - Advanced Business English</td>
<td>Kurs 1: Dienstag, 18.30-20.00<br />Kurs 1: Dienstag, 18.30-20.00</td>
<td>6.10.-15.12.2009, 20 UE à 45 Min./Einheit<br />13.4.-15.6.2010, 20 UE à 45 Min./Einheit</td>
<td>€ 380,-<br />€ 380,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Kurs 1: Montag, 8.00-9.30<br />Kurs 2: Dienstag, 18.30-20.00</td>
<td>11.1.-1.3.2010, 16 UE à 45 Min./Einheit<br />13.4.-1.6.2010, 16 UE à 45 Min./Einheit</td>
<td>€ 306,-<br />€ 306,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Advanced Conversational English', 'courses/advancedconversationalenglish') ?></td>
<td>Kurs 1: Donnerstag, 18.30-20.00<br />Kurs 1: Donnerstag, 18.30-20.00</td>
<td>19.11.-10.12.2009, 8 UE à 45 Min./Einheit<br />15.4.-6.5.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Startup', 'courses/businessstartup') ?> - Intensive Week Elementary</td>
<td>Kurs 1: Montag-Freitag, 8.45-16.00<br />Kurs 2: Montag-Freitag, 8.45-16.00</td>
<td>9.11.-13.11.2009, 1 Woche<br />3.5.-7.5.2010, 1 Woche</td>
<td>€ 864,-<br />€ 864,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Business Builder', 'courses/businessbuilder') ?> - Intensive Week Intermediate</td>
<td>Kurs 1: Montag-Freitag, 8.45-16.00<br />Kurs 2: Montag-Freitag, 8.45-16.00</td>
<td>19.-23.10.2009, 1 Woche<br />12.-16.4.2010, 1 Woche</td>
<td>€ 864,-<br />€ 864,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Beginners', 'courses/everydayenglishforbeginners') ?> Intensive Week</td>
<td>Kurs 1: Montag-Freitag, 8.45-16.00<br />Kurs 2: Montag-Freitag, 8.45-16.00</td>
<td>12.-16.10.2009, 1 Woche<br />19.-23.4.2010, 1 Woche</td>
<td>€ 864,-<br />€ 864,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HORECA Professionals', 'courses/englishforhorecaprofessionals') ?></td>
<td>Kurs 1: Donnerstag, 18.30-20.00<br />Kurs 2: Donnerstag, 18.30-20.00</td>
<td>29.10.-17.12.2009, 16 UE à 45 Min./Einheit<br />27.4.-15.6.2010, 16 UE à 45 Min./Einheit</td>
<td>€ 306,-<br />€ 306,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('IELTS Vorbereitung','courses/internationalenglishlanguagetestingsystem') ?></td>
<td>Mittwoch, 17.00-20.00</td>
<td>5.5.-26.5.2010, 12 UE à 45 Min./Einheit</td>
<td>€ 306,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Writing', 'courses/englishforlegalwriting') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>25.1.-27.1.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Legal Professionals', 'courses/englishforlegalprofessionals') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>7.6.-9.6.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Sales & Marketing', 'courses/englishforsalesmarketing') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>8.3.-10.3.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Meetings & Negotiations', 'courses/englishformeetingsnegotiations') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>15.3.-17.3.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('Winning Presentations in English', 'courses/winningpresentationsinenglish') ?></td>
<td>Kurs 1: Do - Fr, 9.00-16.00<br />Kurs 2: Do - Fr, 9.00-16.00</td>
<td>28.1.-29.1.2010, 2 Tage<br />6.5.-7.5.2010, 2 Tage</td>
<td>€ 390,-<br />€ 390,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('The Language of Presentation', 'courses/thelanguageofpresentations') ?></td>
<td>Kurs 1: Mo - Mi, 9.00-16.00<br />Kurs 2: Mo - Mi, 9.00-16.00</td>
<td>21.9.-23.9.2009, 3 Tage<br />15.3.-17.3.2010, 3 Tage</td>
<td>€ 588,-<br />€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for HR', 'courses/englishforhumanresources') ?></td>
<td>Montag-Mittwoch, 9.00-16.00</td>
<td>22.2.-24.2.2010, 3 Tage</td>
<td>€ 588,-</td>
<td>3-6</td>
</tr>
<tr class='regular'>
<td><?php echo link_to('English for Hotel Staff', 'courses/englishforhotelstaff') ?></td>
<td>Kurs 1: Mittwoch 16.00-17.30<br />Kurs 2: Dienstag 10.00-11.30</td>
<td>4.11.-25.11.2009, 8 UE à 45 Min./Einheit<br />2.3.-23.3.2010, 8 UE à 45 Min./Einheit</td>
<td>€ 153,-<br />€ 153,-</td>
<td>3-6</td>
</tr>
</tbody>
</table>
</div>-->
</div>

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 88
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/validate
END

View File

@@ -0,0 +1,28 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/courses/validate
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 79
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default
END

View File

@@ -0,0 +1,46 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
i18n
dir
actions
dir
config
dir
lib
dir
validate
dir
templates
dir

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 87
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/actions
END
actions.class.php
K 25
svn:wc:ra_dav:version-url
V 105
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/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/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:41:47.000000Z
98b97df7ae1dc2107fa8390546d03f63
2009-05-28T02:14:48.119086Z
25
ben
1181

View File

@@ -0,0 +1,66 @@
<?php
/**
* default actions.
*
* @package pae
* @subpackage default
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class defaultActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
$this->panoramaImage = sfConfig::get("app_home_panorama_image");
}
/**
* Executes error404 action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeError404()
{
}
/**
* Executes login action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLogin()
{
}
/**
* Executes secure action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSecure()
{
}
/**
* Executes disabled action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeDisabled()
{
}
/**
* Executes unavailable action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeUnavailable()
{
}
}

View File

@@ -0,0 +1,67 @@
<?php
/**
* default actions.
*
* @package pae
* @subpackage default
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class defaultActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
$this->panoramaImage = sfConfig::get("app_home_panorama_image");
}
/**
* Executes error404 action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeError404()
{
}
/**
* Executes login action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeLogin()
{
}
/**
* Executes secure action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeSecure()
{
}
/**
* Executes disabled action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeDisabled()
{
}
/**
* Executes unavailable action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeUnavailable()
{
}
}

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/apps/frontend/modules/default/config
END
view.yml
K 25
svn:wc:ra_dav:version-url
V 95
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/config/view.yml
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/config
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
view.yml
file
2010-07-31T05:41:47.000000Z
5a2e030e969b887800e9ab10e811b312
2009-05-28T02:14:48.119086Z
25
ben
35

View File

@@ -0,0 +1,2 @@
indexSuccess:
stylesheets: [home]

View File

@@ -0,0 +1,2 @@
indexSuccess:
stylesheets: [home]

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/default/i18n
END
messages.de.xml
K 25
svn:wc:ra_dav:version-url
V 100
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/i18n/messages.de.xml
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/i18n
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
messages.de.xml
file
2010-07-31T05:41:47.000000Z
ac27857bc5a3c126c5d7c073569733e9
2009-05-28T02:14:48.119086Z
25
ben
1069

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff version="1.0">
<file original="global" source-language="en_US" datatype="plaintext">
<body>
<!-- Index action -->
<trans-unit id='1'>
<source>The name pro active english has become synonymous with high quality, great service, and a new approach to training. Our own cutting-edge methodology, employed by a young team of dynamic trainers, elicits strong participation and creates a highly effective learning environment.</source>
<target>Der Name pro active english ist gleichbedeutend mit hoher Qualität, hervorragendem Service und einem innovativen Trainingsansatz. Die eigens entwickelte progressive Unterrichtsmethodik, von einem jungen, dynamischen Trainerteam vermittelt, ermöglicht eine aktive Teilnehme und nachhaltigen Lernerfolg.</target>
</trans-unit>
<trans-unit id='2'>
<source>Click here to see a short film (in German)</source>
<target>Klicken Sie hier um einen kurzen Film anzuschauen</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff version="1.0">
<file original="global" source-language="en_US" datatype="plaintext">
<body>
<!-- Index action -->
<trans-unit id='1'>
<source>The name pro active english has become synonymous with high quality, great service, and a new approach to training. Our own cutting-edge methodology, employed by a young team of dynamic trainers, elicits strong participation and creates a highly effective learning environment.</source>
<target>Der Name pro active english ist gleichbedeutend mit hoher Qualität, hervorragendem Service und einem innovativen Trainingsansatz. Die eigens entwickelte progressive Unterrichtsmethodik, von einem jungen, dynamischen Trainerteam vermittelt, ermöglicht eine aktive Teilnehme und nachhaltigen Lernerfolg.</target>
</trans-unit>
<trans-unit id='2'>
<source>Click here to see a short film (in German)</source>
<target>Klicken Sie hier um einen kurzen Film anzuschauen</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 83
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/lib
END

View File

@@ -0,0 +1,28 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/lib
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea

View File

@@ -0,0 +1,41 @@
K 25
svn:wc:ra_dav:version-url
V 89
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates
END
error404Success.php
K 25
svn:wc:ra_dav:version-url
V 109
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates/error404Success.php
END
unavailableSuccess.php
K 25
svn:wc:ra_dav:version-url
V 112
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates/unavailableSuccess.php
END
secureSuccess.php
K 25
svn:wc:ra_dav:version-url
V 107
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates/secureSuccess.php
END
disabledSuccess.php
K 25
svn:wc:ra_dav:version-url
V 109
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates/disabledSuccess.php
END
indexSuccess.php
K 25
svn:wc:ra_dav:version-url
V 106
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates/indexSuccess.php
END
loginSuccess.php
K 25
svn:wc:ra_dav:version-url
V 106
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates/loginSuccess.php
END

View File

@@ -0,0 +1,232 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/templates
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
error404Success.php
file
2010-07-31T05:41:47.000000Z
f41f11cd0a5dbed6522474842301000d
2009-05-28T02:14:48.119086Z
25
ben
77
unavailableSuccess.php
file
2010-07-31T05:41:47.000000Z
93e5d20e27131bf2e2c9149aaf70dc7f
2009-05-28T02:14:48.119086Z
25
ben
85
secureSuccess.php
file
2010-07-31T05:41:47.000000Z
53338ce71fca0b30eb6fc987c2241b7f
2009-05-28T02:14:48.119086Z
25
ben
104
disabledSuccess.php
file
2010-07-31T05:41:47.000000Z
dd6764186786bee44375f0def0e753c7
2009-05-28T02:14:48.119086Z
25
ben
75
indexSuccess.php
file
2010-07-31T05:41:47.000000Z
e13135f2b083901ffa0dc6ca4e9acd9e
2009-05-28T02:14:48.119086Z
25
ben
1184
loginSuccess.php
file
2010-07-31T05:41:47.000000Z
ea9ff09fdfbdbdfd5e05daa12ad4b982
2009-05-28T02:14:48.119086Z
25
ben
83

View File

@@ -0,0 +1,4 @@
<h2>Page disabled</h2>
<p>
The page you requested has been disabled.
</p>

View File

@@ -0,0 +1,4 @@
<h2>Page not found</h2>
<p>
The page you requested could not be found.
</p>

View File

@@ -0,0 +1,23 @@
<h2><?php echo __("Welcome to Pro Active English") ?></h2>
<p class='panorama-para'>
<?php echo image_tag('panorama/home/'.$panoramaImage) ?>
</p>
<p>
<?php echo __('The name pro active english has become synonymous with high quality, great service, and a new approach to training. Our own cutting-edge methodology, employed by a young team of dynamic trainers, elicits strong participation and creates a highly effective learning environment.') ?>
</p>
<div class='pae-film'>
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
width="590"
height="442">
<param name="flashvars" value="file=http://pae.co.at/media/pae_movie.flv" />
<param name="movie" value="http://walkernewsdownload.googlepages.com/mediaplayer.swf" />
<embed src="http://pae.co.at/media/player.swf"
width="590"
height="442"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="file=http://pae.co.at/media/pae_movie.flv&image=http://pae.co.at/media/pae_movie_preview.jpg" />
</object>
</div>

View File

@@ -0,0 +1,4 @@
<h2>Access not authorized</h2>
<p>
You are not authorized to view this page.
</p>

View File

@@ -0,0 +1,4 @@
<h2>Insufficient credentials</h2>
<p>
You do no have the necessary credentials to view this page.
</p>

View File

@@ -0,0 +1,4 @@
<h1>Page unavailable</h1>
<p>
We're sorry, this page is currently unavailable.
</p>

View File

@@ -0,0 +1,4 @@
<h2>Page disabled</h2>
<p>
The page you requested has been disabled.
</p>

View File

@@ -0,0 +1,4 @@
<h2>Page not found</h2>
<p>
The page you requested could not be found.
</p>

View File

@@ -0,0 +1,23 @@
<h2><?php echo __("Welcome to Pro Active English") ?></h2>
<p class='panorama-para'>
<?php echo image_tag('panorama/home/'.$panoramaImage) ?>
</p>
<p>
<?php echo __('The name pro active english has become synonymous with high quality, great service, and a new approach to training. Our own cutting-edge methodology, employed by a young team of dynamic trainers, elicits strong participation and creates a highly effective learning environment.') ?>
</p>
<div class='pae-film'>
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
width="590"
height="442">
<param name="flashvars" value="file=http://pae.co.at/media/pae_movie.flv" />
<param name="movie" value="http://walkernewsdownload.googlepages.com/mediaplayer.swf" />
<embed src="http://pae.co.at/media/player.swf"
width="590"
height="442"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="file=http://pae.co.at/media/pae_movie.flv&image=http://pae.co.at/media/pae_movie_preview.jpg" />
</object>
</div>

View File

@@ -0,0 +1,4 @@
<h2>Access not authorized</h2>
<p>
You are not authorized to view this page.
</p>

View File

@@ -0,0 +1,4 @@
<h2>Insufficient credentials</h2>
<p>
You do no have the necessary credentials to view this page.
</p>

View File

@@ -0,0 +1,4 @@
<h1>Page unavailable</h1>
<p>
We're sorry, this page is currently unavailable.
</p>

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 88
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/validate
END

View File

@@ -0,0 +1,28 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/default/validate
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 83
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit
END

View File

@@ -0,0 +1,46 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
i18n
dir
actions
dir
config
dir
lib
dir
validate
dir
templates
dir

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 91
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/actions
END
actions.class.php
K 25
svn:wc:ra_dav:version-url
V 109
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/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/howdowedoit/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:49.000000Z
d34bf5ca877db012f59620ed88ac2627
2009-05-28T02:14:48.119086Z
25
ben
655

View File

@@ -0,0 +1,40 @@
<?php
/**
* howdowedoit actions.
*
* @package pae
* @subpackage howdowedoit
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class howdowedoitActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
}
/**
* Course structure page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeCoursestructure()
{
}
/**
* Methodology action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeMethodology()
{
}
}

View File

@@ -0,0 +1,40 @@
<?php
/**
* howdowedoit actions.
*
* @package pae
* @subpackage howdowedoit
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class howdowedoitActions extends sfActions
{
/**
* Executes index action
*
*/
public function executeIndex()
{
}
/**
* Course structure page
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeCoursestructure()
{
}
/**
* Methodology action
*
* @return void
* @author Benjamin Ramey <ben.ramey@gmail.com>
**/
public function executeMethodology()
{
}
}

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 90
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/config
END
view.yml
K 25
svn:wc:ra_dav:version-url
V 99
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/config/view.yml
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/config
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
view.yml
file
2010-07-31T05:41:49.000000Z
ee0ce08b4a32155da6fad2dab2c9e348
2009-05-28T02:14:48.119086Z
25
ben
33

View File

@@ -0,0 +1,2 @@
all:
stylesheets: [howdowedoit]

View File

@@ -0,0 +1,2 @@
all:
stylesheets: [howdowedoit]

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 88
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/i18n
END
messages.de.xml
K 25
svn:wc:ra_dav:version-url
V 104
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/i18n/messages.de.xml
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/i18n
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
messages.de.xml
file
2010-07-31T05:41:49.000000Z
41a70e7f0cb3162ca28b6b2818e2e576
2009-05-28T02:14:48.119086Z
25
ben
10691

View File

@@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff version="1.0">
<file original="global" source-language="en_US" datatype="plaintext">
<body>
<!-- Index action -->
<trans-unit id='1'>
<source>Course Structure</source>
<target>Kursformen</target>
</trans-unit>
<trans-unit id='2'>
<source>We offer a variety of different course structures, including One-to-One
courses, Courses and Intensive Courses.</source>
<target>Wir bieten eine breite Auswahl an Kursformen wie z.B. Einzelunterricht, Kurse und Intensivkurse.</target>
</trans-unit>
<trans-unit id='3'>
<source>Methodology / Philosophy</source>
<target>Unsere Methoden / Philosophie</target>
</trans-unit>
<trans-unit id='4'>
<source>Our philosophy places the learner at the centre of the learning process and
we use the latest available methods and styles of language teaching.</source>
<target>Unsere Unterrichtsphilosophie stellt den/die Lernende/n in den Mittelpunkt des Lernprozesses, und wir arbeiten mit den neuesten Methoden und Formen des Sprachunterrichts.</target>
</trans-unit>
<!-- Course structure action -->
<trans-unit id='5'>
<source>Weekly Courses</source>
<target>Wöchentlich stattfindende Kurse</target>
</trans-unit>
<trans-unit id='6'>
<source>Our standard weekly course consists of one-and-a-half hours
of training once a week for a block of 15 weeks. Of course it is possible to
do longer or shorter blocks of training, but our experience tells us that
fewer than 15 weeks is not really enough to show any significant improvement.</source>
<target>Unsere wöchentlich stattfindenden Kurse bestehen normalerweise aus Trainingseinheiten von 90 Minuten einmal pro Woche für einen Zeitraum von 15 Wochen. Sie können natürlich auch kürzere oder längere Trainingszeiträume buchen, aber unsere Erfahrungen haben gezeigt, dass weniger als 15 Wochen meist nicht ausreichen, um wesentliche Fortschritte zu erzielen.</target>
</trans-unit>
<trans-unit id='7'>
<source>Intensive Courses</source>
<target>Intensivkurse</target>
</trans-unit>
<trans-unit id='8'>
<source>Intensive courses consist of 1,5-hour session 2 or more
times a week. A typical intensive course consists of three 1,5-hour sessions
per week for a block of 5 weeks.</source>
<target>Intensivkurse bestehen aus Trainingseinheiten von 90 Minuten zweimal pro Woche und öfter. Ein typischer Intensivkurs umfasst drei 90-Minuteneinheiten pro Woche für einen Zeitraum von 5 Wochen.</target>
</trans-unit>
<trans-unit id='9'>
<source>Courses</source>
<target>Kurse</target>
</trans-unit>
<trans-unit id='10'>
<source>Courses consist of specialized topics taught on an intensive
whole-day basis. One-day, two-day and three-day courses are most common.</source>
<target>Kurse befassen sich mit speziellen Themen, die auf einer intensiven Ganztagesbasis behandelt werden. Für gewöhnlich dauern diese Kurse einen, zwei oder drei Tage.</target>
</trans-unit>
<trans-unit id='11'>
<source>%1% to see examples of courses we offer.</source>
<target>%1%, wenn Sie Beispiele für unsere Kurse sehen möchten.</target>
</trans-unit>
<trans-unit id='12'>
<source>Click here</source>
<target>Klicken Sie hier</target>
</trans-unit>
<trans-unit id='13'>
<source>One-to-One</source>
<target>Einzelunterricht</target>
</trans-unit>
<trans-unit id='14'>
<source>For the person who needs a course that is cut solely to their
specific needs the One-to-one course is the ideal solution. This can be
structured to fit the schedule of the individual.</source>
<target>Für Personen, die einen Kurs benötigen, der ganz auf ihre spezifischen Bedürfnisse zugeschnitten ist, ist der Einzelunterricht die ideale Lösung. Er kann je nach Zeitplan des/der TeilnehmerIn gestaltet werden.</target>
</trans-unit>
<trans-unit id='15'>
<source>Small Groups</source>
<target>Kleingruppen</target>
</trans-unit>
<trans-unit id='16'>
<source>Small groups are pedagogically ideal for creating an
environment where all participants can actively partake in the leaning
process. On average a small group consists of 3-5 people.</source>
<target>Kleingruppen bieten vom pädagogischen Standpunkt aus die ideale Umgebung, in der alle TeilnehmerInnen aktiv am Lernprozess teilnehmen können. Eine Kleingruppe besteht normalerweise aus 3-5 Personen.</target>
</trans-unit>
<!-- Methodology action -->
<trans-unit id='17'>
<source>Our Methodology</source>
<target>Unsere Methoden</target>
</trans-unit>
<trans-unit id='18'>
<source>Direct Pro Active Approach</source>
<target>Direkte Pro Active Methode</target>
</trans-unit>
<trans-unit id='19'>
<source>With our "pro active" approach, we place the participant in the very centre of the learning process.</source>
<target>Bei unserer proaktiven Methode stellen wir die KursteilnehmerInnen in den Mittelpunkt des Lernprozesses.</target>
</trans-unit>
<trans-unit id='20'>
<source>Whatever materials are used, they are chosen by the course participants.</source>
<target>Die TeilnehmerInnen entscheiden, welches Material im Kurs verwendet wird.</target>
</trans-unit>
<trans-unit id='21'>
<source>The materials, whether reading, listening, multimedia or correspondence, is used to extract real-life vocabulary, idioms, word partnerships, expressions, grammar and writing practice.</source>
<target>Anhand dieses Materials (Lese- und Hörmaterial, multimediales Material, Material für schriftliche Übungen) werden authentisches Vokabular, Idiome, Wortverbindungen, Redewendungen, Grammatik und der schriftliche Ausdruck erarbeitet.</target>
</trans-unit>
<trans-unit id='22'>
<source>This is done verbally in a very lively atmosphere where all participants have a chance to practise the new material.</source>
<target>In einer sehr lebendigen Atmosphäre können alle TeilnehmerInnen das neu Erlernte üben.</target>
</trans-unit>
<trans-unit id='23'>
<source>The Socratic Approach</source>
<target>Die Sokratische Methode</target>
</trans-unit>
<trans-unit id='24'>
<source>Socrates was a brilliant philosopher who used a QUESTIONING technique to explain his ideas.</source>
<target>Sokrates war ein hervorragender Philosoph, der seine Ideen anhand von FRAGEN erklärte.</target>
</trans-unit>
<trans-unit id='25'>
<source>We have adapted his approach in teaching English. We prefer to "explain" words, grammar, idioms and expressions by asking questions and letting the participants take part in the "discovery" of the meanings and usage of this wonderful Language.</source>
<target>Wir haben diese Methode für den Englischunterricht adaptiert, d.h. wir "erklären" Wörter, Grammatik, Idiome und Redewendungen durch Fragen. Dadurch ermöglichen wir den TeilnehmerInnen eine aktive Rolle in der "Entdeckung" der Bedeutungen und der Verwendung dieser wunderbaren Sprache.</target>
</trans-unit>
<trans-unit id='26'>
<source>This means that the students TAKE PART in a learning experience we NEVER LECTURE!</source>
<target>Die TeilnehmerInnen MACHEN Lernerfahrungen - wir TRAGEN NICHT VOR!</target>
</trans-unit>
<trans-unit id='27'>
<source>The 50% Rule</source>
<target>Die 50%-Regel</target>
</trans-unit>
<trans-unit id='28'>
<source>This is a natural result of our philosophy of teaching. We INVOLVE the participants and strive for the goal of making sure that the learners ACTUALLY SPEAK for at least half the time during the lesson.</source>
<target>Diese Regel ergibt sich aus unserer Unterrichtsphilosophie. Wir INVOLVIEREN die TeilnehmerInnen und streben als Ziel an, dass sie mindestens die Hälfte der Zeit im Unterricht SELBST SPRECHEN.</target>
</trans-unit>
<trans-unit id='29'>
<source>We learn by doing.</source>
<target>Wir lernen durch aktives Handeln ("learning by doing").</target>
</trans-unit>
<trans-unit id='30'>
<source>We learn by practising.</source>
<target>Wir lernen durch Üben.</target>
</trans-unit>
<trans-unit id='31'>
<source>We learn by experiencing the language first-hand!</source>
<target>Wir lernen durch direkte Erfahrungen mit der Sprache!</target>
</trans-unit>
<trans-unit id='32'>
<source>Our motto is "Üben statt Lernen!" Practise, don't learn lists of words and hundreds of Grammar Rules!</source>
<target>Unser Motto lautet "Üben statt Lernen!" Üben, nicht Wortlisten und hunderte Grammatikregeln auswendig lernen!</target>
</trans-unit>
<trans-unit id='33'>
<source>Our Philosophy</source>
<target>Unsere Philosophie</target>
</trans-unit>
<trans-unit id='34'>
<source>Three Question Philosophy</source>
<target>Philosophie der drei Fragen</target>
</trans-unit>
<trans-unit id='35'>
<source>We constantly address the three questions:</source>
<target>Wir stellen uns ständig die folgenden drei Fragen:</target>
</trans-unit>
<trans-unit id='36'>
<source>WHAT are we doing with our students? (The Material)</source>
<target>WAS machen wir mit unseren TeilnehmerInnen? (das Material)</target>
</trans-unit>
<trans-unit id='37'>
<source>HOW are we teaching it? (The Methods)</source>
<target>WIE vermitteln wir es? (die Methoden)</target>
</trans-unit>
<trans-unit id='38'>
<source>Do the participants WANT to do this? (The Motivation)</source>
<target>WOLLEN die TeilnehmerInnen das machen? (die Motivation)</target>
</trans-unit>
<trans-unit id='39'>
<source>With these three questions adequately answered, we succeed in creating an effective, fun, and useful learning environment for the students.</source>
<target>Wenn diese drei Fragen entsprechend beantwortet werden, gelingt es uns, eine effektive, angenehme und anregende Lernumgebung für unsere KursteilnehmerInnen zu schaffen.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8"?>
<xliff version="1.0">
<file original="global" source-language="en_US" datatype="plaintext">
<body>
<!-- Index action -->
<trans-unit id='1'>
<source>Course Structure</source>
<target>Kursformen</target>
</trans-unit>
<trans-unit id='2'>
<source>We offer a variety of different course structures, including One-to-One
courses, Courses and Intensive Courses.</source>
<target>Wir bieten eine breite Auswahl an Kursformen wie z.B. Einzelunterricht, Kurse und Intensivkurse.</target>
</trans-unit>
<trans-unit id='3'>
<source>Methodology / Philosophy</source>
<target>Unsere Methoden / Philosophie</target>
</trans-unit>
<trans-unit id='4'>
<source>Our philosophy places the learner at the centre of the learning process and
we use the latest available methods and styles of language teaching.</source>
<target>Unsere Unterrichtsphilosophie stellt den/die Lernende/n in den Mittelpunkt des Lernprozesses, und wir arbeiten mit den neuesten Methoden und Formen des Sprachunterrichts.</target>
</trans-unit>
<!-- Course structure action -->
<trans-unit id='5'>
<source>Weekly Courses</source>
<target>Wöchentlich stattfindende Kurse</target>
</trans-unit>
<trans-unit id='6'>
<source>Our standard weekly course consists of one-and-a-half hours
of training once a week for a block of 15 weeks. Of course it is possible to
do longer or shorter blocks of training, but our experience tells us that
fewer than 15 weeks is not really enough to show any significant improvement.</source>
<target>Unsere wöchentlich stattfindenden Kurse bestehen normalerweise aus Trainingseinheiten von 90 Minuten einmal pro Woche für einen Zeitraum von 15 Wochen. Sie können natürlich auch kürzere oder längere Trainingszeiträume buchen, aber unsere Erfahrungen haben gezeigt, dass weniger als 15 Wochen meist nicht ausreichen, um wesentliche Fortschritte zu erzielen.</target>
</trans-unit>
<trans-unit id='7'>
<source>Intensive Courses</source>
<target>Intensivkurse</target>
</trans-unit>
<trans-unit id='8'>
<source>Intensive courses consist of 1,5-hour session 2 or more
times a week. A typical intensive course consists of three 1,5-hour sessions
per week for a block of 5 weeks.</source>
<target>Intensivkurse bestehen aus Trainingseinheiten von 90 Minuten zweimal pro Woche und öfter. Ein typischer Intensivkurs umfasst drei 90-Minuteneinheiten pro Woche für einen Zeitraum von 5 Wochen.</target>
</trans-unit>
<trans-unit id='9'>
<source>Courses</source>
<target>Kurse</target>
</trans-unit>
<trans-unit id='10'>
<source>Courses consist of specialized topics taught on an intensive
whole-day basis. One-day, two-day and three-day courses are most common.</source>
<target>Kurse befassen sich mit speziellen Themen, die auf einer intensiven Ganztagesbasis behandelt werden. Für gewöhnlich dauern diese Kurse einen, zwei oder drei Tage.</target>
</trans-unit>
<trans-unit id='11'>
<source>%1% to see examples of courses we offer.</source>
<target>%1%, wenn Sie Beispiele für unsere Kurse sehen möchten.</target>
</trans-unit>
<trans-unit id='12'>
<source>Click here</source>
<target>Klicken Sie hier</target>
</trans-unit>
<trans-unit id='13'>
<source>One-to-One</source>
<target>Einzelunterricht</target>
</trans-unit>
<trans-unit id='14'>
<source>For the person who needs a course that is cut solely to their
specific needs the One-to-one course is the ideal solution. This can be
structured to fit the schedule of the individual.</source>
<target>Für Personen, die einen Kurs benötigen, der ganz auf ihre spezifischen Bedürfnisse zugeschnitten ist, ist der Einzelunterricht die ideale Lösung. Er kann je nach Zeitplan des/der TeilnehmerIn gestaltet werden.</target>
</trans-unit>
<trans-unit id='15'>
<source>Small Groups</source>
<target>Kleingruppen</target>
</trans-unit>
<trans-unit id='16'>
<source>Small groups are pedagogically ideal for creating an
environment where all participants can actively partake in the leaning
process. On average a small group consists of 3-5 people.</source>
<target>Kleingruppen bieten vom pädagogischen Standpunkt aus die ideale Umgebung, in der alle TeilnehmerInnen aktiv am Lernprozess teilnehmen können. Eine Kleingruppe besteht normalerweise aus 3-5 Personen.</target>
</trans-unit>
<!-- Methodology action -->
<trans-unit id='17'>
<source>Our Methodology</source>
<target>Unsere Methoden</target>
</trans-unit>
<trans-unit id='18'>
<source>Direct Pro Active Approach</source>
<target>Direkte Pro Active Methode</target>
</trans-unit>
<trans-unit id='19'>
<source>With our "pro active" approach, we place the participant in the very centre of the learning process.</source>
<target>Bei unserer proaktiven Methode stellen wir die KursteilnehmerInnen in den Mittelpunkt des Lernprozesses.</target>
</trans-unit>
<trans-unit id='20'>
<source>Whatever materials are used, they are chosen by the course participants.</source>
<target>Die TeilnehmerInnen entscheiden, welches Material im Kurs verwendet wird.</target>
</trans-unit>
<trans-unit id='21'>
<source>The materials, whether reading, listening, multimedia or correspondence, is used to extract real-life vocabulary, idioms, word partnerships, expressions, grammar and writing practice.</source>
<target>Anhand dieses Materials (Lese- und Hörmaterial, multimediales Material, Material für schriftliche Übungen) werden authentisches Vokabular, Idiome, Wortverbindungen, Redewendungen, Grammatik und der schriftliche Ausdruck erarbeitet.</target>
</trans-unit>
<trans-unit id='22'>
<source>This is done verbally in a very lively atmosphere where all participants have a chance to practise the new material.</source>
<target>In einer sehr lebendigen Atmosphäre können alle TeilnehmerInnen das neu Erlernte üben.</target>
</trans-unit>
<trans-unit id='23'>
<source>The Socratic Approach</source>
<target>Die Sokratische Methode</target>
</trans-unit>
<trans-unit id='24'>
<source>Socrates was a brilliant philosopher who used a QUESTIONING technique to explain his ideas.</source>
<target>Sokrates war ein hervorragender Philosoph, der seine Ideen anhand von FRAGEN erklärte.</target>
</trans-unit>
<trans-unit id='25'>
<source>We have adapted his approach in teaching English. We prefer to "explain" words, grammar, idioms and expressions by asking questions and letting the participants take part in the "discovery" of the meanings and usage of this wonderful Language.</source>
<target>Wir haben diese Methode für den Englischunterricht adaptiert, d.h. wir "erklären" Wörter, Grammatik, Idiome und Redewendungen durch Fragen. Dadurch ermöglichen wir den TeilnehmerInnen eine aktive Rolle in der "Entdeckung" der Bedeutungen und der Verwendung dieser wunderbaren Sprache.</target>
</trans-unit>
<trans-unit id='26'>
<source>This means that the students TAKE PART in a learning experience we NEVER LECTURE!</source>
<target>Die TeilnehmerInnen MACHEN Lernerfahrungen - wir TRAGEN NICHT VOR!</target>
</trans-unit>
<trans-unit id='27'>
<source>The 50% Rule</source>
<target>Die 50%-Regel</target>
</trans-unit>
<trans-unit id='28'>
<source>This is a natural result of our philosophy of teaching. We INVOLVE the participants and strive for the goal of making sure that the learners ACTUALLY SPEAK for at least half the time during the lesson.</source>
<target>Diese Regel ergibt sich aus unserer Unterrichtsphilosophie. Wir INVOLVIEREN die TeilnehmerInnen und streben als Ziel an, dass sie mindestens die Hälfte der Zeit im Unterricht SELBST SPRECHEN.</target>
</trans-unit>
<trans-unit id='29'>
<source>We learn by doing.</source>
<target>Wir lernen durch aktives Handeln ("learning by doing").</target>
</trans-unit>
<trans-unit id='30'>
<source>We learn by practising.</source>
<target>Wir lernen durch Üben.</target>
</trans-unit>
<trans-unit id='31'>
<source>We learn by experiencing the language first-hand!</source>
<target>Wir lernen durch direkte Erfahrungen mit der Sprache!</target>
</trans-unit>
<trans-unit id='32'>
<source>Our motto is "Üben statt Lernen!" Practise, don't learn lists of words and hundreds of Grammar Rules!</source>
<target>Unser Motto lautet "Üben statt Lernen!" Üben, nicht Wortlisten und hunderte Grammatikregeln auswendig lernen!</target>
</trans-unit>
<trans-unit id='33'>
<source>Our Philosophy</source>
<target>Unsere Philosophie</target>
</trans-unit>
<trans-unit id='34'>
<source>Three Question Philosophy</source>
<target>Philosophie der drei Fragen</target>
</trans-unit>
<trans-unit id='35'>
<source>We constantly address the three questions:</source>
<target>Wir stellen uns ständig die folgenden drei Fragen:</target>
</trans-unit>
<trans-unit id='36'>
<source>WHAT are we doing with our students? (The Material)</source>
<target>WAS machen wir mit unseren TeilnehmerInnen? (das Material)</target>
</trans-unit>
<trans-unit id='37'>
<source>HOW are we teaching it? (The Methods)</source>
<target>WIE vermitteln wir es? (die Methoden)</target>
</trans-unit>
<trans-unit id='38'>
<source>Do the participants WANT to do this? (The Motivation)</source>
<target>WOLLEN die TeilnehmerInnen das machen? (die Motivation)</target>
</trans-unit>
<trans-unit id='39'>
<source>With these three questions adequately answered, we succeed in creating an effective, fun, and useful learning environment for the students.</source>
<target>Wenn diese drei Fragen entsprechend beantwortet werden, gelingt es uns, eine effektive, angenehme und anregende Lernumgebung für unsere KursteilnehmerInnen zu schaffen.</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 87
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/lib
END

View File

@@ -0,0 +1,28 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/lib
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea

View File

@@ -0,0 +1,29 @@
K 25
svn:wc:ra_dav:version-url
V 93
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/templates
END
coursestructureSuccess.php
K 25
svn:wc:ra_dav:version-url
V 120
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/templates/coursestructureSuccess.php
END
_pageNav.php
K 25
svn:wc:ra_dav:version-url
V 106
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/templates/_pageNav.php
END
indexSuccess.php
K 25
svn:wc:ra_dav:version-url
V 110
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/templates/indexSuccess.php
END
methodologySuccess.php
K 25
svn:wc:ra_dav:version-url
V 116
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/templates/methodologySuccess.php
END

View File

@@ -0,0 +1,164 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/templates
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
coursestructureSuccess.php
file
2010-07-31T05:41:49.000000Z
00f9655695c63d8115c4b7d8cedd4edc
2010-05-21T03:59:05.104047Z
52
ben
1929
_pageNav.php
file
2010-07-31T05:41:49.000000Z
c92fdd88ce35ab3dca27ec3348fad608
2009-05-28T02:14:48.119086Z
25
ben
236
indexSuccess.php
file
2010-07-31T05:41:49.000000Z
dd8e3098bf4bd73b31ccc2a5e22ebabf
2009-05-28T02:14:48.119086Z
25
ben
702
methodologySuccess.php
file
2010-07-31T05:41:49.000000Z
667ac59c3b2187d680b96024722aeff4
2009-05-28T02:14:48.119086Z
25
ben
2956

View File

@@ -0,0 +1,5 @@
<h2><?php echo __('How Do We Do It?') ?></h2>
<ul>
<li><?php echo link_to(__('Course Structure'), 'howdowedoit/coursestructure') ?></li>
<li><?php echo link_to(__('Methodology / Philosophy'), 'howdowedoit/methodology') ?></li>
</ul>

View File

@@ -0,0 +1,58 @@
<?php slot('pagenav') ?>
<?php include_partial('pageNav') ?>
<?php end_slot() ?>
<h2><?php echo __('Course Structure') ?></h2>
<h3><?php echo __('Weekly Courses') ?></h3>
<p>
<?php echo __('Our standard weekly course consists of one-and-a-half hours
of training once a week for a block of 15 weeks. Of course it is possible to
do longer or shorter blocks of training, but our experience tells us that
fewer than 15 weeks is not really enough to show any significant improvement.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('Intensive Courses') ?></h3>
<p>
<?php echo __('Intensive courses consist of 1,5-hour session 2 or more
times a week. A typical intensive course consists of three 1,5-hour sessions
per week for a block of 5 weeks.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('Courses') ?></h3>
<p>
<?php echo __('Courses consist of specialized topics taught on an intensive
whole-day basis. One-day, two-day and three-day courses are most common.') ?>
</p>
<p>
<?php echo __('%1% to see examples of courses we offer.', array('%1%' => link_to(__('Click here'), 'courses/list'))) ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('One-to-One') ?></h3>
<p>
<?php echo __('For the person who needs a course that is cut solely to their
specific needs the One-to-one course is the ideal solution. This can be
structured to fit the schedule of the individual.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('Small Groups') ?></h3>
<p>
<?php echo __('Small groups are pedagogically ideal for creating an
environment where all participants can actively partake in the leaning
process. On average a small group consists of 3-5 people.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>

View File

@@ -0,0 +1,18 @@
<?php slot('pagenav') ?>
<?php include_partial('pageNav') ?>
<?php end_slot() ?>
<h2><?php echo __('How Do We Do It?') ?></h2>
<h3><?php echo __('Course Structure') ?></h3>
<p>
<?php echo __('We offer a variety of different course structures, including One-to-One
courses, Courses and Intensive Courses.') ?>
</p>
<p><?php echo link_to(__('Read more'), 'howdowedoit/coursestructure') ?></p>
<h3><?php echo __('Methodology / Philosophy') ?></h3>
<p>
<?php echo __('Our philosophy places the learner at the centre of the learning process and
we use the latest available methods and styles of language teaching.') ?>
</p>
<p><?php echo link_to(__('Read more'), 'howdowedoit/methodology') ?></p>

View File

@@ -0,0 +1,62 @@
<?php slot('pagenav') ?>
<?php include_partial('pageNav') ?>
<?php end_slot() ?>
<h2><?php echo __('Our Methodology') ?></h2>
<h3><?php echo __('Direct Pro Active Approach') ?></h3>
<?php echo image_tag('methodology/proactive graphic_1.gif', 'alt='.__('Direct Pro Active Approach')) ?>
<p>
<?php echo __('With our "pro active" approach, we place the participant in the very centre of the learning process.') ?>
</p>
<p>
<?php echo __('Whatever materials are used, they are chosen by the course participants.') ?>
</p>
<p>
<?php echo __('The materials, whether reading, listening, multimedia or correspondence, is used to extract real-life vocabulary, idioms, word partnerships, expressions, grammar and writing practice.') ?>
</p>
<p>
<?php echo __('This is done verbally in a very lively atmosphere where all participants have a chance to practise the new material.') ?>
</p>
<h3><?php echo __('The Socratic Approach') ?></h3>
<?php echo image_tag('methodology/socratic approach graphic_1.gif', 'alt='.__('The Socratic Approach')) ?>
<p>
<?php echo __('Socrates was a brilliant philosopher who used a QUESTIONING technique to explain his ideas.') ?>
</p>
<p>
<?php echo __('We have adapted his approach in teaching English. We prefer to "explain" words, grammar, idioms and expressions by asking questions and letting the participants take part in the "discovery" of the meanings and usage of this wonderful Language.') ?>
</p>
<p>
<?php echo __('This means that the students TAKE PART in a learning experience we NEVER LECTURE!') ?>
</p>
<h3><?php echo __('The 50% Rule') ?></h3>
<?php echo image_tag('methodology/50 percent graphic_1.gif', 'alt='.__('The 50% Rule')) ?>
<p>
<?php echo __('This is a natural result of our philosophy of teaching. We INVOLVE the participants and strive for the goal of making sure that the learners ACTUALLY SPEAK for at least half the time during the lesson.') ?>
</p>
<ul>
<li><?php echo __('We learn by doing.') ?></li>
<li><?php echo __('We learn by practising.') ?></li>
<li><?php echo __('We learn by experiencing the language first-hand!') ?></li>
</ul>
<p>
<?php echo __('Our motto is "Üben statt Lernen!" Practise, don\'t learn lists of words and hundreds of Grammar Rules!') ?>
</p>
<h2><?php echo __('Our Philosophy') ?></h2>
<h3><?php echo __('Three Question Philosophy') ?></h3>
<?php echo image_tag('methodology/3 questions graphic_1.gif', 'alt='.__('Three Question Philosophy')) ?>
<p>
<?php echo __('We constantly address the three questions:') ?>
</p>
<ul>
<li><?php echo __('WHAT are we doing with our students? (The Material)') ?></li>
<li><?php echo __('HOW are we teaching it? (The Methods)') ?></li>
<li><?php echo __('Do the participants WANT to do this? (The Motivation)') ?></li>
</ul>
<p>
<?php echo __('With these three questions adequately answered, we succeed in creating an effective, fun, and useful learning environment for the students.') ?>
</p>

View File

@@ -0,0 +1,5 @@
<h2><?php echo __('How Do We Do It?') ?></h2>
<ul>
<li><?php echo link_to(__('Course Structure'), 'howdowedoit/coursestructure') ?></li>
<li><?php echo link_to(__('Methodology / Philosophy'), 'howdowedoit/methodology') ?></li>
</ul>

View File

@@ -0,0 +1,58 @@
<?php slot('pagenav') ?>
<?php include_partial('pageNav') ?>
<?php end_slot() ?>
<h2><?php echo __('Course Structure') ?></h2>
<h3><?php echo __('Weekly Courses') ?></h3>
<p>
<?php echo __('Our standard weekly course consists of one-and-a-half hours
of training once a week for a block of 15 weeks. Of course it is possible to
do longer or shorter blocks of training, but our experience tells us that
fewer than 15 weeks is not really enough to show any significant improvement.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('Intensive Courses') ?></h3>
<p>
<?php echo __('Intensive courses consist of 1,5-hour session 2 or more
times a week. A typical intensive course consists of three 1,5-hour sessions
per week for a block of 5 weeks.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('Courses') ?></h3>
<p>
<?php echo __('Courses consist of specialized topics taught on an intensive
whole-day basis. One-day, two-day and three-day courses are most common.') ?>
</p>
<p>
<?php echo __('%1% to see examples of courses we offer.', array('%1%' => link_to(__('Click here'), 'courses/list'))) ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('One-to-One') ?></h3>
<p>
<?php echo __('For the person who needs a course that is cut solely to their
specific needs the One-to-one course is the ideal solution. This can be
structured to fit the schedule of the individual.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>
<h3><?php echo __('Small Groups') ?></h3>
<p>
<?php echo __('Small groups are pedagogically ideal for creating an
environment where all participants can actively partake in the leaning
process. On average a small group consists of 3-5 people.') ?>
</p>
<p>
<?php include_component('layout', 'contactUsLink') ?>
</p>

View File

@@ -0,0 +1,18 @@
<?php slot('pagenav') ?>
<?php include_partial('pageNav') ?>
<?php end_slot() ?>
<h2><?php echo __('How Do We Do It?') ?></h2>
<h3><?php echo __('Course Structure') ?></h3>
<p>
<?php echo __('We offer a variety of different course structures, including One-to-One
courses, Courses and Intensive Courses.') ?>
</p>
<p><?php echo link_to(__('Read more'), 'howdowedoit/coursestructure') ?></p>
<h3><?php echo __('Methodology / Philosophy') ?></h3>
<p>
<?php echo __('Our philosophy places the learner at the centre of the learning process and
we use the latest available methods and styles of language teaching.') ?>
</p>
<p><?php echo link_to(__('Read more'), 'howdowedoit/methodology') ?></p>

View File

@@ -0,0 +1,62 @@
<?php slot('pagenav') ?>
<?php include_partial('pageNav') ?>
<?php end_slot() ?>
<h2><?php echo __('Our Methodology') ?></h2>
<h3><?php echo __('Direct Pro Active Approach') ?></h3>
<?php echo image_tag('methodology/proactive graphic_1.gif', 'alt='.__('Direct Pro Active Approach')) ?>
<p>
<?php echo __('With our "pro active" approach, we place the participant in the very centre of the learning process.') ?>
</p>
<p>
<?php echo __('Whatever materials are used, they are chosen by the course participants.') ?>
</p>
<p>
<?php echo __('The materials, whether reading, listening, multimedia or correspondence, is used to extract real-life vocabulary, idioms, word partnerships, expressions, grammar and writing practice.') ?>
</p>
<p>
<?php echo __('This is done verbally in a very lively atmosphere where all participants have a chance to practise the new material.') ?>
</p>
<h3><?php echo __('The Socratic Approach') ?></h3>
<?php echo image_tag('methodology/socratic approach graphic_1.gif', 'alt='.__('The Socratic Approach')) ?>
<p>
<?php echo __('Socrates was a brilliant philosopher who used a QUESTIONING technique to explain his ideas.') ?>
</p>
<p>
<?php echo __('We have adapted his approach in teaching English. We prefer to "explain" words, grammar, idioms and expressions by asking questions and letting the participants take part in the "discovery" of the meanings and usage of this wonderful Language.') ?>
</p>
<p>
<?php echo __('This means that the students TAKE PART in a learning experience we NEVER LECTURE!') ?>
</p>
<h3><?php echo __('The 50% Rule') ?></h3>
<?php echo image_tag('methodology/50 percent graphic_1.gif', 'alt='.__('The 50% Rule')) ?>
<p>
<?php echo __('This is a natural result of our philosophy of teaching. We INVOLVE the participants and strive for the goal of making sure that the learners ACTUALLY SPEAK for at least half the time during the lesson.') ?>
</p>
<ul>
<li><?php echo __('We learn by doing.') ?></li>
<li><?php echo __('We learn by practising.') ?></li>
<li><?php echo __('We learn by experiencing the language first-hand!') ?></li>
</ul>
<p>
<?php echo __('Our motto is "Üben statt Lernen!" Practise, don\'t learn lists of words and hundreds of Grammar Rules!') ?>
</p>
<h2><?php echo __('Our Philosophy') ?></h2>
<h3><?php echo __('Three Question Philosophy') ?></h3>
<?php echo image_tag('methodology/3 questions graphic_1.gif', 'alt='.__('Three Question Philosophy')) ?>
<p>
<?php echo __('We constantly address the three questions:') ?>
</p>
<ul>
<li><?php echo __('WHAT are we doing with our students? (The Material)') ?></li>
<li><?php echo __('HOW are we teaching it? (The Methods)') ?></li>
<li><?php echo __('Do the participants WANT to do this? (The Motivation)') ?></li>
</ul>
<p>
<?php echo __('With these three questions adequately answered, we succeed in creating an effective, fun, and useful learning environment for the students.') ?>
</p>

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 92
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/validate
END

View File

@@ -0,0 +1,28 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/howdowedoit/validate
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea

View File

@@ -0,0 +1,5 @@
K 25
svn:wc:ra_dav:version-url
V 76
/svn/!svn/ver/52/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info
END

View File

@@ -0,0 +1,46 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info
http://barnabas/svn
2010-05-21T03:59:05.104047Z
52
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
i18n
dir
actions
dir
config
dir
lib
dir
validate
dir
templates
dir

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());
}
}

View File

@@ -0,0 +1,11 @@
K 25
svn:wc:ra_dav:version-url
V 83
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info/config
END
view.yml
K 25
svn:wc:ra_dav:version-url
V 92
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info/config/view.yml
END

View File

@@ -0,0 +1,62 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/apps/frontend/modules/info/config
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
view.yml
file
2010-07-31T05:41:49.000000Z
75e9138caf842c928e31efaf7073fcf2
2009-05-28T02:14:48.119086Z
25
ben
120

Some files were not shown because too many files have changed in this diff Show More