public function getItemFilterDefs()
 {
     $itemFilterDefs = ECP\ItemFilterDefQuery::create()->leftJoinWith('ItemFilterDef.Type')->find();
     $defDict = array();
     foreach ($itemFilterDefs as $itemFilterDef) {
         $defDict[$itemFilterDef->getName()] = array('id' => $itemFilterDef->getId(), 'name' => $itemFilterDef->getName(), 'type' => $itemFilterDef->getType()->getName(), 'min' => $itemFilterDef->getMin(), 'max' => $itemFilterDef->getMax(), 'minlength' => $itemFilterDef->getMinlength(), 'maxlength' => $itemFilterDef->getMaxlength(), 'depth' => $itemFilterDef->getDepth());
     }
     $categories = $this->invTypeService->getCategories();
     $groupDefContent = array();
     foreach ($categories as $category) {
         $groups = $category->getInvGroupss();
         $categoryContent = array(array('id' => 0, 'name' => 'All'));
         foreach ($groups as $group) {
             if ($group->getPublished() == 0) {
                 continue;
             }
             $categoryContent[] = array('id' => $group->getGroupID(), 'name' => $group->getGroupName());
         }
         $groupDefContent[] = array('id' => $category->getCategoryID(), 'name' => $category->getCategoryName(), 'content' => $categoryContent);
     }
     $defDict['Group']['content'] = $groupDefContent;
     $metaGroups = $this->invTypeService->getMetaGroups();
     $metaGroupDefContent = array();
     foreach ($metaGroups as $metaGroup) {
         $metaGroupDefContent[] = array('id' => $metaGroup->getMetaGroupID(), 'name' => $metaGroup->getMetaGroupName());
     }
     $defDict['Meta group']['content'] = $metaGroupDefContent;
     $defDict['Slot type']['content'] = $this->invTypeService->getSlotTypes();
     $defs = array();
     foreach ($defDict as $defEntry) {
         $defs[] = $defEntry;
     }
     return $defs;
 }
 /**
  * Get the associated ChildItemFilterDef object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildItemFilterDef The associated ChildItemFilterDef object.
  * @throws PropelException
  */
 public function getItemFilterDef(ConnectionInterface $con = null)
 {
     if ($this->aItemFilterDef === null && $this->itemfilterdefid !== null) {
         $this->aItemFilterDef = ChildItemFilterDefQuery::create()->findPk($this->itemfilterdefid, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aItemFilterDef->addItemFilterRules($this);
            */
     }
     return $this->aItemFilterDef;
 }
 /**
  * Returns the number of related ItemFilterDef objects.
  *
  * @param      Criteria $criteria
  * @param      boolean $distinct
  * @param      ConnectionInterface $con
  * @return int             Count of related ItemFilterDef objects.
  * @throws PropelException
  */
 public function countItemFilterDefs(Criteria $criteria = null, $distinct = false, ConnectionInterface $con = null)
 {
     $partial = $this->collItemFilterDefsPartial && !$this->isNew();
     if (null === $this->collItemFilterDefs || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collItemFilterDefs) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getItemFilterDefs());
         }
         $query = ChildItemFilterDefQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByType($this)->count($con);
     }
     return count($this->collItemFilterDefs);
 }
 /**
  * Performs an INSERT on the database, given a ItemFilterDef or Criteria object.
  *
  * @param mixed               $criteria Criteria or ItemFilterDef object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *                         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(ItemFilterDefTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from ItemFilterDef object
     }
     if ($criteria->containsKey(ItemFilterDefTableMap::COL_ID) && $criteria->keyContainsValue(ItemFilterDefTableMap::COL_ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . ItemFilterDefTableMap::COL_ID . ')');
     }
     // Set the correct dbName
     $query = ItemFilterDefQuery::create()->mergeWith($criteria);
     // use transaction because $criteria could contain info
     // for more than one table (I guess, conceivably)
     return $con->transaction(function () use($con, $query) {
         return $query->doInsert($con);
     });
 }
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildItemFilterDefQuery::create();
     $criteria->add(ItemFilterDefTableMap::COL_ID, $this->id);
     return $criteria;
 }
 /**
  * Returns a new ChildItemFilterDefQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildItemFilterDefQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildItemFilterDefQuery) {
         return $criteria;
     }
     $query = new ChildItemFilterDefQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }