Changeset 734
- Timestamp:
- 01/20/10 00:43:06 (3 years ago)
- Location:
- framework/branches/1.1/includes/qcubed
- Files:
-
- 13 modified
-
_core/codegen/QCodeGenBase.class.php (modified) (1 diff)
-
_core/codegen/QColumn.class.php (modified) (1 diff)
-
_core/codegen/QConvertNotationBase.class.php (modified) (1 diff)
-
_core/codegen/QDatabaseCodeGen.class.php (modified) (1 diff)
-
_core/codegen/QIndex.class.php (modified) (1 diff)
-
_core/codegen/QManyToManyReference.class.php (modified) (1 diff)
-
_core/codegen/QReference.class.php (modified) (1 diff)
-
_core/codegen/QRestServiceCodeGen.class.php (modified) (1 diff)
-
_core/codegen/QReverseReference.class.php (modified) (1 diff)
-
_core/codegen/QTable.class.php (modified) (1 diff)
-
_core/codegen/QTypeTable.class.php (modified) (2 diffs)
-
codegen/QCodeGen.class.php (modified) (1 diff)
-
codegen/QConvertNotation.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
framework/branches/1.1/includes/qcubed/_core/codegen/QCodeGenBase.class.php
r608 r734 10 10 * the draft Forms, which make up simple HTML/PHP scripts to perform 11 11 * basic CRUD functionality on each object. 12 * @package Codegen 12 13 */ 13 14 abstract class QCodeGenBase extends QBaseClass { -
framework/branches/1.1/includes/qcubed/_core/codegen/QColumn.class.php
r482 r734 2 2 /** 3 3 * Used by the QCubed Code Generator to describe a table's column 4 * @package Codegen 4 5 */ 5 6 class QColumn extends QBaseClass { -
framework/branches/1.1/includes/qcubed/_core/codegen/QConvertNotationBase.class.php
r173 r734 1 1 <?php 2 /** 3 * @package Codegen 4 */ 5 2 6 // NOTATIONS: http://www.cob.sjsu.edu/johnson_f/notation.htm 3 7 abstract class QConvertNotationBase { -
framework/branches/1.1/includes/qcubed/_core/codegen/QDatabaseCodeGen.class.php
r556 r734 8 8 require(__QCUBED_CORE__ . '/codegen/QTypeTable.class.php'); 9 9 10 /** 11 * @package Codegen 12 */ 10 13 class QDatabaseCodeGen extends QCodeGen { 11 14 // Objects -
framework/branches/1.1/includes/qcubed/_core/codegen/QIndex.class.php
r173 r734 2 2 /** 3 3 * Used by the QCubed Code Generator to describe a table Index 4 * @package Codegen 4 5 */ 5 6 class QIndex extends QBaseClass { -
framework/branches/1.1/includes/qcubed/_core/codegen/QManyToManyReference.class.php
r173 r734 3 3 * Used by the QCubed Code Generator to describe a column reference from 4 4 * the table's perspective (aka a Foreign Key from the referenced Table's point of view) 5 * @package Codegen 5 6 */ 6 7 class QManyToManyReference extends QBaseClass { -
framework/branches/1.1/includes/qcubed/_core/codegen/QReference.class.php
r173 r734 3 3 * Used by the QCubed Code Generator to describe a column reference 4 4 * (aka a Foreign Key) 5 * @package Codegen 5 6 */ 6 7 class QReference extends QBaseClass { -
framework/branches/1.1/includes/qcubed/_core/codegen/QRestServiceCodeGen.class.php
r173 r734 1 1 <?php 2 /** 3 * @package Codegen 4 */ 2 5 class QRestServiceCodeGen extends QCodeGen { 3 6 // REST Service-specific Attributes -
framework/branches/1.1/includes/qcubed/_core/codegen/QReverseReference.class.php
r173 r734 3 3 * Used by the QCubed Code Generator to describe a column reference from 4 4 * the table's perspective (aka a Foreign Key from the referenced Table's point of view) 5 * @package Codegen 5 6 */ 6 7 class QReverseReference extends QBaseClass { -
framework/branches/1.1/includes/qcubed/_core/codegen/QTable.class.php
r553 r734 2 2 /** 3 3 * Used by the QCubed Code Generator to describe a database Table 4 * @package Codegen 4 5 */ 5 6 class QTable extends QBaseClass { -
framework/branches/1.1/includes/qcubed/_core/codegen/QTypeTable.class.php
r173 r734 2 2 /** 3 3 * Used by the QCubed Code Generator to describe a database Type Table 4 * "Type" tables must be defined with onlytwo columns, the first one being an integer-based primary key,4 * "Type" tables must be defined with at least two columns, the first one being an integer-based primary key, 5 5 * and the second one being the name of the type. 6 * @package Codegen 6 7 */ 7 8 class QTypeTable extends QBaseClass { … … 31 32 32 33 /** 33 * Column names for extra properties (beyond the 2 basic ones), if any.34 * Column names for extra properties (beyond the 2 basic columns), if any. 34 35 */ 35 36 protected $strExtraFieldNamesArray; -
framework/branches/1.1/includes/qcubed/codegen/QCodeGen.class.php
r173 r734 2 2 require(__QCUBED_CORE__ . '/codegen/QCodeGenBase.class.php'); 3 3 4 // Feel free to override any core QCodeGenBase methods here 4 /** 5 * Feel free to override any core QCodeGenBase methods here 6 * @package Codegen 7 */ 5 8 class QCodeGen extends QCodeGenBase { 6 9 // Example: Overriding the Pluralize method -
framework/branches/1.1/includes/qcubed/codegen/QConvertNotation.class.php
r173 r734 2 2 require(__QCUBED_CORE__ . '/codegen/QConvertNotationBase.class.php'); 3 3 4 // Feel free to override any core QConvertNotationBase methods here 4 /** 5 * Feel free to override any core QConvertNotationBase methods here 6 * @package Codegen 7 */ 5 8 abstract class QConvertNotation extends QConvertNotationBase { 6 9 }
