creating templates for validation.
This commit is contained in:
parent
19ba788bae
commit
69afc715d1
24 changed files with 1552 additions and 82 deletions
|
@ -1099,6 +1099,31 @@ abstract class BaseCcPlayoutHistory extends BaseObject implements Persistent
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* If this collection has already been initialized with
|
||||
* an identical criteria, it returns the collection.
|
||||
* Otherwise if this CcPlayoutHistory is new, it will return
|
||||
* an empty collection; or if this CcPlayoutHistory has previously
|
||||
* been saved, it will retrieve related CcPlayoutHistoryMetaDatas from storage.
|
||||
*
|
||||
* This method is protected by default in order to keep the public
|
||||
* api reasonable. You can provide public methods for those you
|
||||
* actually need in CcPlayoutHistory.
|
||||
*
|
||||
* @param Criteria $criteria optional Criteria object to narrow the query
|
||||
* @param PropelPDO $con optional connection object
|
||||
* @param string $join_behavior optional join type to use (defaults to Criteria::LEFT_JOIN)
|
||||
* @return PropelCollection|array CcPlayoutHistoryMetaData[] List of CcPlayoutHistoryMetaData objects
|
||||
*/
|
||||
public function getCcPlayoutHistoryMetaDatasJoinCcTag($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
|
||||
{
|
||||
$query = CcPlayoutHistoryMetaDataQuery::create(null, $criteria);
|
||||
$query->joinWith('CcTag', $join_behavior);
|
||||
|
||||
return $this->getCcPlayoutHistoryMetaDatas($query, $con);
|
||||
}
|
||||
|
||||
/**
|
||||
* Clears the current object and sets all attributes to their default values
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue