adding zend project folders into old campcaster.
This commit is contained in:
parent
56abfaf28e
commit
7ef0c18b26
4045 changed files with 1054952 additions and 0 deletions
144
library/propel/runtime/lib/formatter/ModelWith.php
Executable file
144
library/propel/runtime/lib/formatter/ModelWith.php
Executable file
|
@ -0,0 +1,144 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of the Propel package.
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @license MIT License
|
||||
*/
|
||||
|
||||
/**
|
||||
* Data object to describe a joined hydration in a Model Query
|
||||
* ModelWith objects are used by formatters to hydrate related objects
|
||||
*
|
||||
* @author Francois Zaninotto (Propel)
|
||||
* @package propel.runtime.query
|
||||
*/
|
||||
class ModelWith
|
||||
{
|
||||
protected $modelName = '';
|
||||
protected $modelPeerName = '';
|
||||
protected $isSingleTableInheritance = false;
|
||||
protected $isAdd = false;
|
||||
protected $relationName = '';
|
||||
protected $relationMethod = '';
|
||||
protected $relatedClass;
|
||||
|
||||
public function __construct(ModelJoin $join = null)
|
||||
{
|
||||
if (null !== $join) {
|
||||
$this->init($join);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the joined hydration schema based on a join object.
|
||||
* Fills the ModelWith properties using a ModelJoin as source
|
||||
*
|
||||
* @param ModelJoin $join
|
||||
*/
|
||||
public function init(ModelJoin $join)
|
||||
{
|
||||
$tableMap = $join->getTableMap();
|
||||
$this->modelName = $tableMap->getClassname();
|
||||
$this->modelPeerName = $tableMap->getPeerClassname();
|
||||
$this->isSingleTableInheritance = $tableMap->isSingleTableInheritance();
|
||||
$relation = $join->getRelationMap();
|
||||
if ($relation->getType() == RelationMap::ONE_TO_MANY) {
|
||||
$this->isAdd = true;
|
||||
$this->relationName = $relation->getName() . 's';
|
||||
$this->relationMethod = 'add' . $relation->getName();
|
||||
} else {
|
||||
$this->relationName = $relation->getName();
|
||||
$this->relationMethod = 'set' . $relation->getName();
|
||||
}
|
||||
if (!$join->isPrimary()) {
|
||||
$this->relatedClass = $join->hasLeftTableAlias() ? $join->getLeftTableAlias() : $relation->getLeftTable()->getPhpName();
|
||||
}
|
||||
}
|
||||
|
||||
// DataObject getters & setters
|
||||
|
||||
public function setModelName($modelName)
|
||||
{
|
||||
$this->modelName = $modelName;
|
||||
}
|
||||
|
||||
public function getModelName()
|
||||
{
|
||||
return $this->modelName;
|
||||
}
|
||||
|
||||
public function setModelPeerName($modelPeerName)
|
||||
{
|
||||
$this->modelPeerName = $modelPeerName;
|
||||
}
|
||||
|
||||
public function getModelPeerName()
|
||||
{
|
||||
return $this->modelPeerName;
|
||||
}
|
||||
|
||||
public function setIsSingleTableInheritance($isSingleTableInheritance)
|
||||
{
|
||||
$this->isSingleTableInheritance = $isSingleTableInheritance;
|
||||
}
|
||||
|
||||
public function isSingleTableInheritance()
|
||||
{
|
||||
return $this->isSingleTableInheritance;
|
||||
}
|
||||
|
||||
public function setIsAdd($isAdd)
|
||||
{
|
||||
$this->isAdd = $isAdd;;
|
||||
}
|
||||
|
||||
public function isAdd()
|
||||
{
|
||||
return $this->isAdd;
|
||||
}
|
||||
|
||||
public function setRelationName($relationName)
|
||||
{
|
||||
$this->relationName = $relationName;
|
||||
}
|
||||
|
||||
public function getRelationName()
|
||||
{
|
||||
return $this->relationName;
|
||||
}
|
||||
|
||||
public function setRelationMethod($relationMethod)
|
||||
{
|
||||
$this->relationMethod = $relationMethod;
|
||||
}
|
||||
|
||||
public function getRelationMethod()
|
||||
{
|
||||
return $this->relationMethod;
|
||||
}
|
||||
|
||||
public function setRelatedClass($relatedClass)
|
||||
{
|
||||
$this->relatedClass = $relatedClass;
|
||||
}
|
||||
|
||||
public function getRelatedClass()
|
||||
{
|
||||
return $this->relatedClass;
|
||||
}
|
||||
|
||||
// Utility methods
|
||||
|
||||
public function isPrimary()
|
||||
{
|
||||
return null === $this->relatedClass;
|
||||
}
|
||||
|
||||
public function __toString()
|
||||
{
|
||||
return sprintf("modelName: %s, relationName: %s, relationMethod: %s, relatedClass: %s", $this->modelName, $this->relationName, $this->relationMethod, $this->relatedClass);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue