ModelDescriptor::getTable PHP Method

getTable() public method

public getTable ( )
    function getTable()
    {
        return $this->table;
    }

Usage Example

Example #1
0
 static function toCode(ModelDescriptor $descriptor)
 {
     $classFile = new CodeGenClassFile();
     $class = new CodeGenClass($descriptor->modelClass);
     $class->setExtends('Model');
     $classFile->addClass($class);
     $classDocComment = new CodeGenDocComment();
     $classDocComment->addLine('!Database ' . $descriptor->source);
     $classDocComment->addLine('!Table ' . $descriptor->getTable());
     $class->setDocComment($classDocComment);
     foreach ($descriptor->properties as $prop) {
         $property = new CodeGenProperty($prop->name);
         $columnDocComment = '!Column ';
         if ($prop->isPrimaryKey) {
             $columnDocComment .= 'PrimaryKey, ';
         }
         $columnDocComment .= $prop->type;
         if ($prop->isAutoIncrement) {
             $columnDocComment .= ', AutoIncrement';
         }
         $propertyDocComment = new CodeGenDocComment($columnDocComment);
         $property->setDocComment($propertyDocComment);
         $class->addProperty($property);
     }
     return $classFile->toCode();
 }
All Usage Examples Of ModelDescriptor::getTable