コード例 #1
0
ファイル: VariationType.php プロジェクト: mtornero/slowshop
 /**
  * Initializes the collVariations collection.
  *
  * By default this just sets the collVariations collection to an empty array (like clearcollVariations());
  * however, you may wish to override this method in your stub class to provide setting appropriate
  * to your application -- for example, setting the initial array to the values stored in database.
  *
  * @param      boolean $overrideExisting If set to true, the method call initializes
  *                                        the collection even if it is not empty
  *
  * @return void
  */
 public function initVariations($overrideExisting = true)
 {
     if (null !== $this->collVariations && !$overrideExisting) {
         return;
     }
     $collectionClassName = VariationTableMap::getTableMap()->getCollectionClassName();
     $this->collVariations = new $collectionClassName();
     $this->collVariations->setModel('\\App\\Propel\\Variation');
 }