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,53 @@
K 25
svn:wc:ra_dav:version-url
V 63
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map
END
LuEmployeePositionMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 96
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/LuEmployeePositionMapBuilder.php
END
ReferenceMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 87
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/ReferenceMapBuilder.php
END
EmployeeI18nMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 90
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/EmployeeI18nMapBuilder.php
END
EmployeeMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 86
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/EmployeeMapBuilder.php
END
CourseI18nMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 88
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/CourseI18nMapBuilder.php
END
CourseMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 84
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/CourseMapBuilder.php
END
EventI18nMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 87
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/EventI18nMapBuilder.php
END
EventMapBuilder.php
K 25
svn:wc:ra_dav:version-url
V 83
/svn/!svn/ver/25/pae.co.at/trunk/proactiveenglish/lib/model/map/EventMapBuilder.php
END

View File

@@ -0,0 +1,300 @@
10
dir
55
http://barnabas/svn/pae.co.at/trunk/proactiveenglish/lib/model/map
http://barnabas/svn
2009-05-28T02:14:48.119086Z
25
ben
5f44b648-3ce2-dc11-a6be-00b0d029fcea
LuEmployeePositionMapBuilder.php
file
2010-07-31T05:41:53.000000Z
8d2da7c7080ad27f04812ee386cdaf38
2009-05-28T02:14:48.119086Z
25
ben
666
ReferenceMapBuilder.php
file
2010-07-31T05:41:53.000000Z
66c8de8ca5fafd77f1c957e99db528cf
2009-05-28T02:14:48.119086Z
25
ben
636
EmployeeI18nMapBuilder.php
file
2010-07-31T05:41:53.000000Z
db7cb6f47b35f1920dbc5672d61147bc
2009-05-28T02:14:48.119086Z
25
ben
848
EmployeeMapBuilder.php
file
2010-07-31T05:41:53.000000Z
c38b852a490cd95736a508e65785efb4
2009-05-28T02:14:48.119086Z
25
ben
1433
CourseI18nMapBuilder.php
file
2010-07-31T05:41:53.000000Z
b29e0f3e0da2e9a7a273ee062fb32542
2009-05-28T02:14:48.119086Z
25
ben
842
CourseMapBuilder.php
file
2010-07-31T05:41:53.000000Z
82809020391107efb5911eb751f9f5a7
2009-05-28T02:14:48.119086Z
25
ben
609
EventI18nMapBuilder.php
file
2010-07-31T05:41:53.000000Z
1958e735b6594d1e1436f1c4180dbbfc
2009-05-28T02:14:48.119086Z
25
ben
837
EventMapBuilder.php
file
2010-07-31T05:41:53.000000Z
6b62d5cb6c35929e542860a6cefd6dd4
2009-05-28T02:14:48.119086Z
25
ben
704

View File

@@ -0,0 +1,44 @@
<?php
class CourseI18nMapBuilder {
const CLASS_NAME = 'lib.model.map.CourseI18nMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Course_i18n');
$tMap->setPhpName('CourseI18n');
$tMap->setUseIdGenerator(false);
$tMap->addColumn('TITLE', 'Title', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('DESCRIPTION', 'Description', 'string', CreoleTypes::LONGVARCHAR, false, null);
$tMap->addForeignPrimaryKey('ID', 'Id', 'int' , CreoleTypes::INTEGER, 'Course', 'ID', true, null);
$tMap->addPrimaryKey('CULTURE', 'Culture', 'string', CreoleTypes::VARCHAR, true, 7);
}
}

View File

@@ -0,0 +1,40 @@
<?php
class CourseMapBuilder {
const CLASS_NAME = 'lib.model.map.CourseMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Course');
$tMap->setPhpName('Course');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('SLUG', 'Slug', 'string', CreoleTypes::VARCHAR, false, 100);
}
}

View File

@@ -0,0 +1,44 @@
<?php
class EmployeeI18nMapBuilder {
const CLASS_NAME = 'lib.model.map.EmployeeI18nMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Employee_i18n');
$tMap->setPhpName('EmployeeI18n');
$tMap->setUseIdGenerator(false);
$tMap->addColumn('BIOGRAPHY', 'Biography', 'string', CreoleTypes::LONGVARCHAR, false, null);
$tMap->addColumn('TITLE', 'Title', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addForeignPrimaryKey('ID', 'Id', 'int' , CreoleTypes::INTEGER, 'Employee', 'ID', true, null);
$tMap->addPrimaryKey('CULTURE', 'Culture', 'string', CreoleTypes::VARCHAR, true, 7);
}
}

View File

@@ -0,0 +1,58 @@
<?php
class EmployeeMapBuilder {
const CLASS_NAME = 'lib.model.map.EmployeeMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Employee');
$tMap->setPhpName('Employee');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('NAME', 'Name', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('DEGREES', 'Degrees', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('PHONE', 'Phone', 'string', CreoleTypes::VARCHAR, false, 25);
$tMap->addColumn('CELLPHONE', 'Cellphone', 'string', CreoleTypes::VARCHAR, false, 25);
$tMap->addColumn('EMAIL', 'Email', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('PICTURE', 'Picture', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('ACTIVE', 'Active', 'boolean', CreoleTypes::BOOLEAN, false, null);
$tMap->addForeignKey('POSITION', 'Position', 'int', CreoleTypes::INTEGER, 'LU_Employee_Position', 'ID', false, null);
$tMap->addColumn('SLUG', 'Slug', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('SORT_ORDER', 'SortOrder', 'int', CreoleTypes::INTEGER, false, null);
}
}

View File

@@ -0,0 +1,44 @@
<?php
class EventI18nMapBuilder {
const CLASS_NAME = 'lib.model.map.EventI18nMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Event_i18n');
$tMap->setPhpName('EventI18n');
$tMap->setUseIdGenerator(false);
$tMap->addColumn('TITLE', 'Title', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('DESCRIPTION', 'Description', 'string', CreoleTypes::LONGVARCHAR, false, null);
$tMap->addForeignPrimaryKey('ID', 'Id', 'int' , CreoleTypes::INTEGER, 'Event', 'ID', true, null);
$tMap->addPrimaryKey('CULTURE', 'Culture', 'string', CreoleTypes::VARCHAR, true, 7);
}
}

View File

@@ -0,0 +1,42 @@
<?php
class EventMapBuilder {
const CLASS_NAME = 'lib.model.map.EventMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Event');
$tMap->setPhpName('Event');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('PICTURE', 'Picture', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('EXPIRES_ON', 'ExpiresOn', 'int', CreoleTypes::TIMESTAMP, false, null);
}
}

View File

@@ -0,0 +1,40 @@
<?php
class LuEmployeePositionMapBuilder {
const CLASS_NAME = 'lib.model.map.LuEmployeePositionMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('LU_Employee_Position');
$tMap->setPhpName('LuEmployeePosition');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('POSITION', 'Position', 'string', CreoleTypes::VARCHAR, false, 25);
}
}

View File

@@ -0,0 +1,40 @@
<?php
class ReferenceMapBuilder {
const CLASS_NAME = 'lib.model.map.ReferenceMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Reference');
$tMap->setPhpName('Reference');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('COMPANY_NAME', 'CompanyName', 'string', CreoleTypes::VARCHAR, false, 255);
}
}

View File

@@ -0,0 +1,44 @@
<?php
class CourseI18nMapBuilder {
const CLASS_NAME = 'lib.model.map.CourseI18nMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Course_i18n');
$tMap->setPhpName('CourseI18n');
$tMap->setUseIdGenerator(false);
$tMap->addColumn('TITLE', 'Title', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('DESCRIPTION', 'Description', 'string', CreoleTypes::LONGVARCHAR, false, null);
$tMap->addForeignPrimaryKey('ID', 'Id', 'int' , CreoleTypes::INTEGER, 'Course', 'ID', true, null);
$tMap->addPrimaryKey('CULTURE', 'Culture', 'string', CreoleTypes::VARCHAR, true, 7);
}
}

View File

@@ -0,0 +1,40 @@
<?php
class CourseMapBuilder {
const CLASS_NAME = 'lib.model.map.CourseMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Course');
$tMap->setPhpName('Course');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('SLUG', 'Slug', 'string', CreoleTypes::VARCHAR, false, 100);
}
}

View File

@@ -0,0 +1,44 @@
<?php
class EmployeeI18nMapBuilder {
const CLASS_NAME = 'lib.model.map.EmployeeI18nMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Employee_i18n');
$tMap->setPhpName('EmployeeI18n');
$tMap->setUseIdGenerator(false);
$tMap->addColumn('BIOGRAPHY', 'Biography', 'string', CreoleTypes::LONGVARCHAR, false, null);
$tMap->addColumn('TITLE', 'Title', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addForeignPrimaryKey('ID', 'Id', 'int' , CreoleTypes::INTEGER, 'Employee', 'ID', true, null);
$tMap->addPrimaryKey('CULTURE', 'Culture', 'string', CreoleTypes::VARCHAR, true, 7);
}
}

View File

@@ -0,0 +1,58 @@
<?php
class EmployeeMapBuilder {
const CLASS_NAME = 'lib.model.map.EmployeeMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Employee');
$tMap->setPhpName('Employee');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('NAME', 'Name', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('DEGREES', 'Degrees', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('PHONE', 'Phone', 'string', CreoleTypes::VARCHAR, false, 25);
$tMap->addColumn('CELLPHONE', 'Cellphone', 'string', CreoleTypes::VARCHAR, false, 25);
$tMap->addColumn('EMAIL', 'Email', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('PICTURE', 'Picture', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('ACTIVE', 'Active', 'boolean', CreoleTypes::BOOLEAN, false, null);
$tMap->addForeignKey('POSITION', 'Position', 'int', CreoleTypes::INTEGER, 'LU_Employee_Position', 'ID', false, null);
$tMap->addColumn('SLUG', 'Slug', 'string', CreoleTypes::VARCHAR, false, 100);
$tMap->addColumn('SORT_ORDER', 'SortOrder', 'int', CreoleTypes::INTEGER, false, null);
}
}

View File

@@ -0,0 +1,44 @@
<?php
class EventI18nMapBuilder {
const CLASS_NAME = 'lib.model.map.EventI18nMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Event_i18n');
$tMap->setPhpName('EventI18n');
$tMap->setUseIdGenerator(false);
$tMap->addColumn('TITLE', 'Title', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('DESCRIPTION', 'Description', 'string', CreoleTypes::LONGVARCHAR, false, null);
$tMap->addForeignPrimaryKey('ID', 'Id', 'int' , CreoleTypes::INTEGER, 'Event', 'ID', true, null);
$tMap->addPrimaryKey('CULTURE', 'Culture', 'string', CreoleTypes::VARCHAR, true, 7);
}
}

View File

@@ -0,0 +1,42 @@
<?php
class EventMapBuilder {
const CLASS_NAME = 'lib.model.map.EventMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Event');
$tMap->setPhpName('Event');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('PICTURE', 'Picture', 'string', CreoleTypes::VARCHAR, false, 255);
$tMap->addColumn('EXPIRES_ON', 'ExpiresOn', 'int', CreoleTypes::TIMESTAMP, false, null);
}
}

View File

@@ -0,0 +1,40 @@
<?php
class LuEmployeePositionMapBuilder {
const CLASS_NAME = 'lib.model.map.LuEmployeePositionMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('LU_Employee_Position');
$tMap->setPhpName('LuEmployeePosition');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('POSITION', 'Position', 'string', CreoleTypes::VARCHAR, false, 25);
}
}

View File

@@ -0,0 +1,40 @@
<?php
class ReferenceMapBuilder {
const CLASS_NAME = 'lib.model.map.ReferenceMapBuilder';
private $dbMap;
public function isBuilt()
{
return ($this->dbMap !== null);
}
public function getDatabaseMap()
{
return $this->dbMap;
}
public function doBuild()
{
$this->dbMap = Propel::getDatabaseMap('propel');
$tMap = $this->dbMap->addTable('Reference');
$tMap->setPhpName('Reference');
$tMap->setUseIdGenerator(true);
$tMap->addPrimaryKey('ID', 'Id', 'int', CreoleTypes::INTEGER, true, null);
$tMap->addColumn('COMPANY_NAME', 'CompanyName', 'string', CreoleTypes::VARCHAR, false, 255);
}
}