コード例 #1
0
ファイル: Group.php プロジェクト: rapila/cms-base
 public function addRole($sRoleName)
 {
     $aRoles = func_get_args();
     foreach ($aRoles as $mRole) {
         if (!$mRole instanceof Role) {
             $mRole = RoleQuery::create()->createOrFindPk($mRole);
         }
         GroupRoleQuery::create()->createOrFind($this, $mRole);
     }
 }
コード例 #2
0
 public function getGroupHasRoles($iGroupId)
 {
     return GroupRoleQuery::create()->filterByGroupId($iGroupId)->count() > 0;
 }
コード例 #3
0
ファイル: BaseGroupRole.php プロジェクト: rapila/cms-base
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param PropelPDO $con
  * @return void
  * @throws PropelException
  * @throws Exception
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(GroupRolePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = GroupRoleQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         // denyable behavior
         if (!(GroupRolePeer::isIgnoringRights() || $this->mayOperate("delete"))) {
             throw new PropelException(new NotPermittedException("delete.by_role", array("role_key" => "users")));
         }
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
コード例 #4
0
ファイル: BaseGroup.php プロジェクト: rapila/cms-base
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Group is new, it will return
  * an empty collection; or if this Group has previously
  * been saved, it will retrieve related GroupRoles 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 Group.
  *
  * @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 PropelObjectCollection|GroupRole[] List of GroupRole objects
  */
 public function getGroupRolesJoinUserRelatedByUpdatedBy($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = GroupRoleQuery::create(null, $criteria);
     $query->joinWith('UserRelatedByUpdatedBy', $join_behavior);
     return $this->getGroupRoles($query, $con);
 }
コード例 #5
0
 /**
  * Returns a new GroupRoleQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   GroupRoleQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return GroupRoleQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof GroupRoleQuery) {
         return $criteria;
     }
     $query = new GroupRoleQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }