id; } /** * Get the [katao_index] column value. * * @return int */ public function getKataoIndex() { return $this->katao_index; } /** * Get the [katao_node_id] column value. * * @return int */ public function getKataoNodeId() { return $this->katao_node_id; } /** * Get the [next_katao_node_id] column value. * * @return int */ public function getNextKataoNodeId() { return $this->next_katao_node_id; } /** * Get the [katao_member_id] column value. * * @return int */ public function getKataoMemberId() { return $this->katao_member_id; } /** * Get the [first_name] column value. * * @return string */ public function getFirstName() { return $this->first_name; } /** * Get the [last_name] column value. * * @return string */ public function getLastName() { return $this->last_name; } /** * Get the [accounting_code] column value. * * @return string */ public function getAccountingCode() { return $this->accounting_code; } /** * Get the [accounting_code_sol] column value. * * @return string */ public function getAccountingCodeSol() { return $this->accounting_code_sol; } /** * Get the [initial_amount_euro] column value. * * @return double */ public function getInitialAmountEuro() { return $this->initial_amount_euro; } /** * Get the [initial_amount_sol] column value. * * @return int */ public function getInitialAmountSol() { return $this->initial_amount_sol; } /** * Get the [is_referer] column value. * * @return int */ public function getIsReferer() { return $this->is_referer; } /** * Get the [is_delegate] column value. * * @return int */ public function getIsDelegate() { return $this->is_delegate; } /** * Get the [is_anonymous] column value. * * @return int */ public function getIsAnonymous() { return $this->is_anonymous; } /** * Get the [is_member] column value. * * @return int */ public function getIsMember() { return $this->is_member; } /** * Get the [card_number_sol] column value. * * @return string */ public function getCardNumberSol() { return $this->card_number_sol; } /** * Get the [user_situation] column value. * * @return string */ public function getUserSituation() { return $this->user_situation; } /** * Get the [optionally formatted] [user_birthday] column value. * * @param string $format The date/time format string (either date()-style or strftime()-style). * If format is NULL, then the integer unix timestamp will be returned. * @return mixed Formatted date/time value as string or integer unix timestamp (if format is NULL). * @throws PropelException - if unable to convert the date/time to timestamp. */ public function getUserBirthday($format = 'Y-m-d') { if ($this->user_birthday === null || $this->user_birthday === '') { return null; } elseif (!is_int($this->user_birthday)) { // a non-timestamp value was set externally, so we convert it $ts = strtotime($this->user_birthday); if ($ts === -1 || $ts === false) { // in PHP 5.1 return value changes to FALSE throw new PropelException("Unable to parse value of [user_birthday] as date/time value: " . var_export($this->user_birthday, true)); } } else { $ts = $this->user_birthday; } if ($format === null) { return $ts; } elseif (strpos($format, '%') !== false) { return strftime($format, $ts); } else { return date($format, $ts); } } /** * Get the [parrain_name] column value. * * @return string */ public function getParrainName() { return $this->parrain_name; } /** * Get the [optionally formatted] [created_at] column value. * * @param string $format The date/time format string (either date()-style or strftime()-style). * If format is NULL, then the integer unix timestamp will be returned. * @return mixed Formatted date/time value as string or integer unix timestamp (if format is NULL). * @throws PropelException - if unable to convert the date/time to timestamp. */ public function getCreatedAt($format = 'Y-m-d H:i:s') { if ($this->created_at === null || $this->created_at === '') { return null; } elseif (!is_int($this->created_at)) { // a non-timestamp value was set externally, so we convert it $ts = strtotime($this->created_at); if ($ts === -1 || $ts === false) { // in PHP 5.1 return value changes to FALSE throw new PropelException("Unable to parse value of [created_at] as date/time value: " . var_export($this->created_at, true)); } } else { $ts = $this->created_at; } if ($format === null) { return $ts; } elseif (strpos($format, '%') !== false) { return strftime($format, $ts); } else { return date($format, $ts); } } /** * Get the [optionally formatted] [updated_at] column value. * * @param string $format The date/time format string (either date()-style or strftime()-style). * If format is NULL, then the integer unix timestamp will be returned. * @return mixed Formatted date/time value as string or integer unix timestamp (if format is NULL). * @throws PropelException - if unable to convert the date/time to timestamp. */ public function getUpdatedAt($format = 'Y-m-d H:i:s') { if ($this->updated_at === null || $this->updated_at === '') { return null; } elseif (!is_int($this->updated_at)) { // a non-timestamp value was set externally, so we convert it $ts = strtotime($this->updated_at); if ($ts === -1 || $ts === false) { // in PHP 5.1 return value changes to FALSE throw new PropelException("Unable to parse value of [updated_at] as date/time value: " . var_export($this->updated_at, true)); } } else { $ts = $this->updated_at; } if ($format === null) { return $ts; } elseif (strpos($format, '%') !== false) { return strftime($format, $ts); } else { return date($format, $ts); } } /** * Set the value of [id] column. * * @param int $v new value * @return void */ public function setId($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->id !== $v) { $this->id = $v; $this->modifiedColumns[] = KataoMemberPeer::ID; } } // setId() /** * Set the value of [katao_index] column. * * @param int $v new value * @return void */ public function setKataoIndex($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->katao_index !== $v) { $this->katao_index = $v; $this->modifiedColumns[] = KataoMemberPeer::KATAO_INDEX; } } // setKataoIndex() /** * Set the value of [katao_node_id] column. * * @param int $v new value * @return void */ public function setKataoNodeId($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->katao_node_id !== $v) { $this->katao_node_id = $v; $this->modifiedColumns[] = KataoMemberPeer::KATAO_NODE_ID; } if ($this->aKataoNodeRelatedByKataoNodeId !== null && $this->aKataoNodeRelatedByKataoNodeId->getId() !== $v) { $this->aKataoNodeRelatedByKataoNodeId = null; } } // setKataoNodeId() /** * Set the value of [next_katao_node_id] column. * * @param int $v new value * @return void */ public function setNextKataoNodeId($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->next_katao_node_id !== $v) { $this->next_katao_node_id = $v; $this->modifiedColumns[] = KataoMemberPeer::NEXT_KATAO_NODE_ID; } if ($this->aKataoNodeRelatedByNextKataoNodeId !== null && $this->aKataoNodeRelatedByNextKataoNodeId->getId() !== $v) { $this->aKataoNodeRelatedByNextKataoNodeId = null; } } // setNextKataoNodeId() /** * Set the value of [katao_member_id] column. * * @param int $v new value * @return void */ public function setKataoMemberId($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->katao_member_id !== $v) { $this->katao_member_id = $v; $this->modifiedColumns[] = KataoMemberPeer::KATAO_MEMBER_ID; } if ($this->aKataoMemberRelatedByKataoMemberId !== null && $this->aKataoMemberRelatedByKataoMemberId->getId() !== $v) { $this->aKataoMemberRelatedByKataoMemberId = null; } } // setKataoMemberId() /** * Set the value of [first_name] column. * * @param string $v new value * @return void */ public function setFirstName($v) { // Since the native PHP type for this column is string, // we will cast the input to a string (if it is not). if ($v !== null && !is_string($v)) { $v = (string) $v; } if ($this->first_name !== $v) { $this->first_name = $v; $this->modifiedColumns[] = KataoMemberPeer::FIRST_NAME; } } // setFirstName() /** * Set the value of [last_name] column. * * @param string $v new value * @return void */ public function setLastName($v) { // Since the native PHP type for this column is string, // we will cast the input to a string (if it is not). if ($v !== null && !is_string($v)) { $v = (string) $v; } if ($this->last_name !== $v) { $this->last_name = $v; $this->modifiedColumns[] = KataoMemberPeer::LAST_NAME; } } // setLastName() /** * Set the value of [accounting_code] column. * * @param string $v new value * @return void */ public function setAccountingCode($v) { // Since the native PHP type for this column is string, // we will cast the input to a string (if it is not). if ($v !== null && !is_string($v)) { $v = (string) $v; } if ($this->accounting_code !== $v) { $this->accounting_code = $v; $this->modifiedColumns[] = KataoMemberPeer::ACCOUNTING_CODE; } } // setAccountingCode() /** * Set the value of [accounting_code_sol] column. * * @param string $v new value * @return void */ public function setAccountingCodeSol($v) { // Since the native PHP type for this column is string, // we will cast the input to a string (if it is not). if ($v !== null && !is_string($v)) { $v = (string) $v; } if ($this->accounting_code_sol !== $v) { $this->accounting_code_sol = $v; $this->modifiedColumns[] = KataoMemberPeer::ACCOUNTING_CODE_SOL; } } // setAccountingCodeSol() /** * Set the value of [initial_amount_euro] column. * * @param double $v new value * @return void */ public function setInitialAmountEuro($v) { if ($this->initial_amount_euro !== $v || $v === 0) { $this->initial_amount_euro = $v; $this->modifiedColumns[] = KataoMemberPeer::INITIAL_AMOUNT_EURO; } } // setInitialAmountEuro() /** * Set the value of [initial_amount_sol] column. * * @param int $v new value * @return void */ public function setInitialAmountSol($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->initial_amount_sol !== $v || $v === 0) { $this->initial_amount_sol = $v; $this->modifiedColumns[] = KataoMemberPeer::INITIAL_AMOUNT_SOL; } } // setInitialAmountSol() /** * Set the value of [is_referer] column. * * @param int $v new value * @return void */ public function setIsReferer($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->is_referer !== $v || $v === 0) { $this->is_referer = $v; $this->modifiedColumns[] = KataoMemberPeer::IS_REFERER; } } // setIsReferer() /** * Set the value of [is_delegate] column. * * @param int $v new value * @return void */ public function setIsDelegate($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->is_delegate !== $v || $v === 0) { $this->is_delegate = $v; $this->modifiedColumns[] = KataoMemberPeer::IS_DELEGATE; } } // setIsDelegate() /** * Set the value of [is_anonymous] column. * * @param int $v new value * @return void */ public function setIsAnonymous($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->is_anonymous !== $v || $v === 0) { $this->is_anonymous = $v; $this->modifiedColumns[] = KataoMemberPeer::IS_ANONYMOUS; } } // setIsAnonymous() /** * Set the value of [is_member] column. * * @param int $v new value * @return void */ public function setIsMember($v) { // Since the native PHP type for this column is integer, // we will cast the input value to an int (if it is not). if ($v !== null && !is_int($v) && is_numeric($v)) { $v = (int) $v; } if ($this->is_member !== $v || $v === 1) { $this->is_member = $v; $this->modifiedColumns[] = KataoMemberPeer::IS_MEMBER; } } // setIsMember() /** * Set the value of [card_number_sol] column. * * @param string $v new value * @return void */ public function setCardNumberSol($v) { // Since the native PHP type for this column is string, // we will cast the input to a string (if it is not). if ($v !== null && !is_string($v)) { $v = (string) $v; } if ($this->card_number_sol !== $v) { $this->card_number_sol = $v; $this->modifiedColumns[] = KataoMemberPeer::CARD_NUMBER_SOL; } } // setCardNumberSol() /** * Set the value of [user_situation] column. * * @param string $v new value * @return void */ public function setUserSituation($v) { // Since the native PHP type for this column is string, // we will cast the input to a string (if it is not). if ($v !== null && !is_string($v)) { $v = (string) $v; } if ($this->user_situation !== $v) { $this->user_situation = $v; $this->modifiedColumns[] = KataoMemberPeer::USER_SITUATION; } } // setUserSituation() /** * Set the value of [user_birthday] column. * * @param int $v new value * @return void */ public function setUserBirthday($v) { if ($v !== null && !is_int($v)) { $ts = strtotime($v); if ($ts === -1 || $ts === false) { // in PHP 5.1 return value changes to FALSE throw new PropelException("Unable to parse date/time value for [user_birthday] from input: " . var_export($v, true)); } } else { $ts = $v; } if ($this->user_birthday !== $ts) { $this->user_birthday = $ts; $this->modifiedColumns[] = KataoMemberPeer::USER_BIRTHDAY; } } // setUserBirthday() /** * Set the value of [parrain_name] column. * * @param string $v new value * @return void */ public function setParrainName($v) { // Since the native PHP type for this column is string, // we will cast the input to a string (if it is not). if ($v !== null && !is_string($v)) { $v = (string) $v; } if ($this->parrain_name !== $v) { $this->parrain_name = $v; $this->modifiedColumns[] = KataoMemberPeer::PARRAIN_NAME; } } // setParrainName() /** * Set the value of [created_at] column. * * @param int $v new value * @return void */ public function setCreatedAt($v) { if ($v !== null && !is_int($v)) { $ts = strtotime($v); if ($ts === -1 || $ts === false) { // in PHP 5.1 return value changes to FALSE throw new PropelException("Unable to parse date/time value for [created_at] from input: " . var_export($v, true)); } } else { $ts = $v; } if ($this->created_at !== $ts) { $this->created_at = $ts; $this->modifiedColumns[] = KataoMemberPeer::CREATED_AT; } } // setCreatedAt() /** * Set the value of [updated_at] column. * * @param int $v new value * @return void */ public function setUpdatedAt($v) { if ($v !== null && !is_int($v)) { $ts = strtotime($v); if ($ts === -1 || $ts === false) { // in PHP 5.1 return value changes to FALSE throw new PropelException("Unable to parse date/time value for [updated_at] from input: " . var_export($v, true)); } } else { $ts = $v; } if ($this->updated_at !== $ts) { $this->updated_at = $ts; $this->modifiedColumns[] = KataoMemberPeer::UPDATED_AT; } } // setUpdatedAt() /** * Hydrates (populates) the object variables with values from the database resultset. * * An offset (1-based "start column") is specified so that objects can be hydrated * with a subset of the columns in the resultset rows. This is needed, for example, * for results of JOIN queries where the resultset row includes columns from two or * more tables. * * @param ResultSet $rs The ResultSet class with cursor advanced to desired record pos. * @param int $startcol 1-based offset column which indicates which restultset column to start with. * @return int next starting column * @throws PropelException - Any caught Exception will be rewrapped as a PropelException. */ public function hydrate(ResultSet $rs, $startcol = 1) { try { $this->id = $rs->getInt($startcol + 0); $this->katao_index = $rs->getInt($startcol + 1); $this->katao_node_id = $rs->getInt($startcol + 2); $this->next_katao_node_id = $rs->getInt($startcol + 3); $this->katao_member_id = $rs->getInt($startcol + 4); $this->first_name = $rs->getString($startcol + 5); $this->last_name = $rs->getString($startcol + 6); $this->accounting_code = $rs->getString($startcol + 7); $this->accounting_code_sol = $rs->getString($startcol + 8); $this->initial_amount_euro = $rs->getFloat($startcol + 9); $this->initial_amount_sol = $rs->getInt($startcol + 10); $this->is_referer = $rs->getInt($startcol + 11); $this->is_delegate = $rs->getInt($startcol + 12); $this->is_anonymous = $rs->getInt($startcol + 13); $this->is_member = $rs->getInt($startcol + 14); $this->card_number_sol = $rs->getString($startcol + 15); $this->user_situation = $rs->getString($startcol + 16); $this->user_birthday = $rs->getDate($startcol + 17, null); $this->parrain_name = $rs->getString($startcol + 18); $this->created_at = $rs->getTimestamp($startcol + 19, null); $this->updated_at = $rs->getTimestamp($startcol + 20, null); $this->resetModified(); $this->setNew(false); // FIXME - using NUM_COLUMNS may be clearer. return $startcol + 21; // 21 = KataoMemberPeer::NUM_COLUMNS - KataoMemberPeer::NUM_LAZY_LOAD_COLUMNS). } catch (Exception $e) { throw new PropelException("Error populating KataoMember object", $e); } } /** * Removes this object from datastore and sets delete attribute. * * @param Connection $con * @return void * @throws PropelException * @see BaseObject::setDeleted() * @see BaseObject::isDeleted() */ public function delete($con = null) { foreach (sfMixer::getCallables('BaseKataoMember:delete:pre') as $callable) { $ret = call_user_func($callable, $this, $con); if ($ret) { return; } } if ($this->isDeleted()) { throw new PropelException("This object has already been deleted."); } if ($con === null) { $con = Propel::getConnection(KataoMemberPeer::DATABASE_NAME); } try { $con->begin(); KataoMemberPeer::doDelete($this, $con); $this->setDeleted(true); $con->commit(); } catch (PropelException $e) { $con->rollback(); throw $e; } foreach (sfMixer::getCallables('BaseKataoMember:delete:post') as $callable) { call_user_func($callable, $this, $con); } } /** * Stores the object in the database. If the object is new, * it inserts it; otherwise an update is performed. This method * wraps the doSave() worker method in a transaction. * * @param Connection $con * @return int The number of rows affected by this insert/update and any referring fk objects' save() operations. * @throws PropelException * @see doSave() */ public function save($con = null) { foreach (sfMixer::getCallables('BaseKataoMember:save:pre') as $callable) { $affectedRows = call_user_func($callable, $this, $con); if (is_int($affectedRows)) { return $affectedRows; } } if ($this->isNew() && !$this->isColumnModified(KataoMemberPeer::CREATED_AT)) { $this->setCreatedAt(time()); } if ($this->isModified() && !$this->isColumnModified(KataoMemberPeer::UPDATED_AT)) { $this->setUpdatedAt(time()); } if ($this->isDeleted()) { throw new PropelException("You cannot save an object that has been deleted."); } if ($con === null) { $con = Propel::getConnection(KataoMemberPeer::DATABASE_NAME); } try { $con->begin(); $affectedRows = $this->doSave($con); $con->commit(); foreach (sfMixer::getCallables('BaseKataoMember:save:post') as $callable) { call_user_func($callable, $this, $con, $affectedRows); } return $affectedRows; } catch (PropelException $e) { $con->rollback(); throw $e; } } /** * Stores the object in the database. * * If the object is new, it inserts it; otherwise an update is performed. * All related objects are also updated in this method. * * @param Connection $con * @return int The number of rows affected by this insert/update and any referring fk objects' save() operations. * @throws PropelException * @see save() */ protected function doSave($con) { $affectedRows = 0; // initialize var to track total num of affected rows if (!$this->alreadyInSave) { $this->alreadyInSave = true; // We call the save method on the following object(s) if they // were passed to this object by their coresponding set // method. This object relates to these object(s) by a // foreign key reference. if ($this->aKataoNodeRelatedByKataoNodeId !== null) { if ($this->aKataoNodeRelatedByKataoNodeId->isModified()) { $affectedRows += $this->aKataoNodeRelatedByKataoNodeId->save($con); } $this->setKataoNodeRelatedByKataoNodeId($this->aKataoNodeRelatedByKataoNodeId); } if ($this->aKataoNodeRelatedByNextKataoNodeId !== null) { if ($this->aKataoNodeRelatedByNextKataoNodeId->isModified()) { $affectedRows += $this->aKataoNodeRelatedByNextKataoNodeId->save($con); } $this->setKataoNodeRelatedByNextKataoNodeId($this->aKataoNodeRelatedByNextKataoNodeId); } if ($this->aKataoMemberRelatedByKataoMemberId !== null) { if ($this->aKataoMemberRelatedByKataoMemberId->isModified()) { $affectedRows += $this->aKataoMemberRelatedByKataoMemberId->save($con); } $this->setKataoMemberRelatedByKataoMemberId($this->aKataoMemberRelatedByKataoMemberId); } // If this object has been modified, then save it to the database. if ($this->isModified()) { if ($this->isNew()) { $pk = KataoMemberPeer::doInsert($this, $con); $affectedRows += 1; // we are assuming that there is only 1 row per doInsert() which // should always be true here (even though technically // BasePeer::doInsert() can insert multiple rows). $this->setId($pk); //[IMV] update autoincrement primary key $this->setNew(false); } else { $affectedRows += KataoMemberPeer::doUpdate($this, $con); } $this->resetModified(); // [HL] After being saved an object is no longer 'modified' } if ($this->collKataoConfigs !== null) { foreach($this->collKataoConfigs as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoUsers !== null) { foreach($this->collKataoUsers as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoMembersRelatedByKataoMemberId !== null) { foreach($this->collKataoMembersRelatedByKataoMemberId as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoSuppliersRelatedByMemberId !== null) { foreach($this->collKataoSuppliersRelatedByMemberId as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoSuppliersRelatedByRefererId !== null) { foreach($this->collKataoSuppliersRelatedByRefererId as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoInvoices !== null) { foreach($this->collKataoInvoices as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoMemberDeposits !== null) { foreach($this->collKataoMemberDeposits as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoMemberNodes !== null) { foreach($this->collKataoMemberNodes as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } if ($this->collKataoAssocMemberGroups !== null) { foreach($this->collKataoAssocMemberGroups as $referrerFK) { if (!$referrerFK->isDeleted()) { $affectedRows += $referrerFK->save($con); } } } $this->alreadyInSave = false; } return $affectedRows; } // doSave() /** * Array of ValidationFailed objects. * @var array ValidationFailed[] */ protected $validationFailures = array(); /** * Gets any ValidationFailed objects that resulted from last call to validate(). * * * @return array ValidationFailed[] * @see validate() */ public function getValidationFailures() { return $this->validationFailures; } /** * Validates the objects modified field values and all objects related to this table. * * If $columns is either a column name or an array of column names * only those columns are validated. * * @param mixed $columns Column name or an array of column names. * @return boolean Whether all columns pass validation. * @see doValidate() * @see getValidationFailures() */ public function validate($columns = null) { $res = $this->doValidate($columns); if ($res === true) { $this->validationFailures = array(); return true; } else { $this->validationFailures = $res; return false; } } /** * This function performs the validation work for complex object models. * * In addition to checking the current object, all related objects will * also be validated. If all pass then true is returned; otherwise * an aggreagated array of ValidationFailed objects will be returned. * * @param array $columns Array of column names to validate. * @return mixed true if all validations pass; array of ValidationFailed objets otherwise. */ protected function doValidate($columns = null) { if (!$this->alreadyInValidation) { $this->alreadyInValidation = true; $retval = null; $failureMap = array(); // We call the validate method on the following object(s) if they // were passed to this object by their coresponding set // method. This object relates to these object(s) by a // foreign key reference. if ($this->aKataoNodeRelatedByKataoNodeId !== null) { if (!$this->aKataoNodeRelatedByKataoNodeId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aKataoNodeRelatedByKataoNodeId->getValidationFailures()); } } if ($this->aKataoNodeRelatedByNextKataoNodeId !== null) { if (!$this->aKataoNodeRelatedByNextKataoNodeId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aKataoNodeRelatedByNextKataoNodeId->getValidationFailures()); } } if ($this->aKataoMemberRelatedByKataoMemberId !== null) { if (!$this->aKataoMemberRelatedByKataoMemberId->validate($columns)) { $failureMap = array_merge($failureMap, $this->aKataoMemberRelatedByKataoMemberId->getValidationFailures()); } } if (($retval = KataoMemberPeer::doValidate($this, $columns)) !== true) { $failureMap = array_merge($failureMap, $retval); } if ($this->collKataoConfigs !== null) { foreach($this->collKataoConfigs as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collKataoUsers !== null) { foreach($this->collKataoUsers as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collKataoSuppliersRelatedByMemberId !== null) { foreach($this->collKataoSuppliersRelatedByMemberId as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collKataoSuppliersRelatedByRefererId !== null) { foreach($this->collKataoSuppliersRelatedByRefererId as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collKataoInvoices !== null) { foreach($this->collKataoInvoices as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collKataoMemberDeposits !== null) { foreach($this->collKataoMemberDeposits as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collKataoMemberNodes !== null) { foreach($this->collKataoMemberNodes as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } if ($this->collKataoAssocMemberGroups !== null) { foreach($this->collKataoAssocMemberGroups as $referrerFK) { if (!$referrerFK->validate($columns)) { $failureMap = array_merge($failureMap, $referrerFK->getValidationFailures()); } } } $this->alreadyInValidation = false; } return (!empty($failureMap) ? $failureMap : true); } /** * Retrieves a field from the object by name passed in as a string. * * @param string $name name * @param string $type The type of fieldname the $name is of: * one of the class type constants TYPE_PHPNAME, * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM * @return mixed Value of field. */ public function getByName($name, $type = BasePeer::TYPE_PHPNAME) { $pos = KataoMemberPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM); return $this->getByPosition($pos); } /** * Retrieves a field from the object by Position as specified in the xml schema. * Zero-based. * * @param int $pos position in xml schema * @return mixed Value of field at $pos */ public function getByPosition($pos) { switch($pos) { case 0: return $this->getId(); break; case 1: return $this->getKataoIndex(); break; case 2: return $this->getKataoNodeId(); break; case 3: return $this->getNextKataoNodeId(); break; case 4: return $this->getKataoMemberId(); break; case 5: return $this->getFirstName(); break; case 6: return $this->getLastName(); break; case 7: return $this->getAccountingCode(); break; case 8: return $this->getAccountingCodeSol(); break; case 9: return $this->getInitialAmountEuro(); break; case 10: return $this->getInitialAmountSol(); break; case 11: return $this->getIsReferer(); break; case 12: return $this->getIsDelegate(); break; case 13: return $this->getIsAnonymous(); break; case 14: return $this->getIsMember(); break; case 15: return $this->getCardNumberSol(); break; case 16: return $this->getUserSituation(); break; case 17: return $this->getUserBirthday(); break; case 18: return $this->getParrainName(); break; case 19: return $this->getCreatedAt(); break; case 20: return $this->getUpdatedAt(); break; default: return null; break; } // switch() } /** * Exports the object as an array. * * You can specify the key type of the array by passing one of the class * type constants. * * @param string $keyType One of the class type constants TYPE_PHPNAME, * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM * @return an associative array containing the field names (as keys) and field values */ public function toArray($keyType = BasePeer::TYPE_PHPNAME) { $keys = KataoMemberPeer::getFieldNames($keyType); $result = array( $keys[0] => $this->getId(), $keys[1] => $this->getKataoIndex(), $keys[2] => $this->getKataoNodeId(), $keys[3] => $this->getNextKataoNodeId(), $keys[4] => $this->getKataoMemberId(), $keys[5] => $this->getFirstName(), $keys[6] => $this->getLastName(), $keys[7] => $this->getAccountingCode(), $keys[8] => $this->getAccountingCodeSol(), $keys[9] => $this->getInitialAmountEuro(), $keys[10] => $this->getInitialAmountSol(), $keys[11] => $this->getIsReferer(), $keys[12] => $this->getIsDelegate(), $keys[13] => $this->getIsAnonymous(), $keys[14] => $this->getIsMember(), $keys[15] => $this->getCardNumberSol(), $keys[16] => $this->getUserSituation(), $keys[17] => $this->getUserBirthday(), $keys[18] => $this->getParrainName(), $keys[19] => $this->getCreatedAt(), $keys[20] => $this->getUpdatedAt(), ); return $result; } /** * Sets a field from the object by name passed in as a string. * * @param string $name peer name * @param mixed $value field value * @param string $type The type of fieldname the $name is of: * one of the class type constants TYPE_PHPNAME, * TYPE_COLNAME, TYPE_FIELDNAME, TYPE_NUM * @return void */ public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME) { $pos = KataoMemberPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM); return $this->setByPosition($pos, $value); } /** * Sets a field from the object by Position as specified in the xml schema. * Zero-based. * * @param int $pos position in xml schema * @param mixed $value field value * @return void */ public function setByPosition($pos, $value) { switch($pos) { case 0: $this->setId($value); break; case 1: $this->setKataoIndex($value); break; case 2: $this->setKataoNodeId($value); break; case 3: $this->setNextKataoNodeId($value); break; case 4: $this->setKataoMemberId($value); break; case 5: $this->setFirstName($value); break; case 6: $this->setLastName($value); break; case 7: $this->setAccountingCode($value); break; case 8: $this->setAccountingCodeSol($value); break; case 9: $this->setInitialAmountEuro($value); break; case 10: $this->setInitialAmountSol($value); break; case 11: $this->setIsReferer($value); break; case 12: $this->setIsDelegate($value); break; case 13: $this->setIsAnonymous($value); break; case 14: $this->setIsMember($value); break; case 15: $this->setCardNumberSol($value); break; case 16: $this->setUserSituation($value); break; case 17: $this->setUserBirthday($value); break; case 18: $this->setParrainName($value); break; case 19: $this->setCreatedAt($value); break; case 20: $this->setUpdatedAt($value); break; } // switch() } /** * Populates the object using an array. * * This is particularly useful when populating an object from one of the * request arrays (e.g. $_POST). This method goes through the column * names, checking to see whether a matching key exists in populated * array. If so the setByName() method is called for that column. * * You can specify the key type of the array by additionally passing one * of the class type constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME, * TYPE_NUM. The default key type is the column's phpname (e.g. 'authorId') * * @param array $arr An array to populate the object from. * @param string $keyType The type of keys the array uses. * @return void */ public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = KataoMemberPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) $this->setId($arr[$keys[0]]); if (array_key_exists($keys[1], $arr)) $this->setKataoIndex($arr[$keys[1]]); if (array_key_exists($keys[2], $arr)) $this->setKataoNodeId($arr[$keys[2]]); if (array_key_exists($keys[3], $arr)) $this->setNextKataoNodeId($arr[$keys[3]]); if (array_key_exists($keys[4], $arr)) $this->setKataoMemberId($arr[$keys[4]]); if (array_key_exists($keys[5], $arr)) $this->setFirstName($arr[$keys[5]]); if (array_key_exists($keys[6], $arr)) $this->setLastName($arr[$keys[6]]); if (array_key_exists($keys[7], $arr)) $this->setAccountingCode($arr[$keys[7]]); if (array_key_exists($keys[8], $arr)) $this->setAccountingCodeSol($arr[$keys[8]]); if (array_key_exists($keys[9], $arr)) $this->setInitialAmountEuro($arr[$keys[9]]); if (array_key_exists($keys[10], $arr)) $this->setInitialAmountSol($arr[$keys[10]]); if (array_key_exists($keys[11], $arr)) $this->setIsReferer($arr[$keys[11]]); if (array_key_exists($keys[12], $arr)) $this->setIsDelegate($arr[$keys[12]]); if (array_key_exists($keys[13], $arr)) $this->setIsAnonymous($arr[$keys[13]]); if (array_key_exists($keys[14], $arr)) $this->setIsMember($arr[$keys[14]]); if (array_key_exists($keys[15], $arr)) $this->setCardNumberSol($arr[$keys[15]]); if (array_key_exists($keys[16], $arr)) $this->setUserSituation($arr[$keys[16]]); if (array_key_exists($keys[17], $arr)) $this->setUserBirthday($arr[$keys[17]]); if (array_key_exists($keys[18], $arr)) $this->setParrainName($arr[$keys[18]]); if (array_key_exists($keys[19], $arr)) $this->setCreatedAt($arr[$keys[19]]); if (array_key_exists($keys[20], $arr)) $this->setUpdatedAt($arr[$keys[20]]); } /** * Build a Criteria object containing the values of all modified columns in this object. * * @return Criteria The Criteria object containing all modified values. */ public function buildCriteria() { $criteria = new Criteria(KataoMemberPeer::DATABASE_NAME); if ($this->isColumnModified(KataoMemberPeer::ID)) $criteria->add(KataoMemberPeer::ID, $this->id); if ($this->isColumnModified(KataoMemberPeer::KATAO_INDEX)) $criteria->add(KataoMemberPeer::KATAO_INDEX, $this->katao_index); if ($this->isColumnModified(KataoMemberPeer::KATAO_NODE_ID)) $criteria->add(KataoMemberPeer::KATAO_NODE_ID, $this->katao_node_id); if ($this->isColumnModified(KataoMemberPeer::NEXT_KATAO_NODE_ID)) $criteria->add(KataoMemberPeer::NEXT_KATAO_NODE_ID, $this->next_katao_node_id); if ($this->isColumnModified(KataoMemberPeer::KATAO_MEMBER_ID)) $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->katao_member_id); if ($this->isColumnModified(KataoMemberPeer::FIRST_NAME)) $criteria->add(KataoMemberPeer::FIRST_NAME, $this->first_name); if ($this->isColumnModified(KataoMemberPeer::LAST_NAME)) $criteria->add(KataoMemberPeer::LAST_NAME, $this->last_name); if ($this->isColumnModified(KataoMemberPeer::ACCOUNTING_CODE)) $criteria->add(KataoMemberPeer::ACCOUNTING_CODE, $this->accounting_code); if ($this->isColumnModified(KataoMemberPeer::ACCOUNTING_CODE_SOL)) $criteria->add(KataoMemberPeer::ACCOUNTING_CODE_SOL, $this->accounting_code_sol); if ($this->isColumnModified(KataoMemberPeer::INITIAL_AMOUNT_EURO)) $criteria->add(KataoMemberPeer::INITIAL_AMOUNT_EURO, $this->initial_amount_euro); if ($this->isColumnModified(KataoMemberPeer::INITIAL_AMOUNT_SOL)) $criteria->add(KataoMemberPeer::INITIAL_AMOUNT_SOL, $this->initial_amount_sol); if ($this->isColumnModified(KataoMemberPeer::IS_REFERER)) $criteria->add(KataoMemberPeer::IS_REFERER, $this->is_referer); if ($this->isColumnModified(KataoMemberPeer::IS_DELEGATE)) $criteria->add(KataoMemberPeer::IS_DELEGATE, $this->is_delegate); if ($this->isColumnModified(KataoMemberPeer::IS_ANONYMOUS)) $criteria->add(KataoMemberPeer::IS_ANONYMOUS, $this->is_anonymous); if ($this->isColumnModified(KataoMemberPeer::IS_MEMBER)) $criteria->add(KataoMemberPeer::IS_MEMBER, $this->is_member); if ($this->isColumnModified(KataoMemberPeer::CARD_NUMBER_SOL)) $criteria->add(KataoMemberPeer::CARD_NUMBER_SOL, $this->card_number_sol); if ($this->isColumnModified(KataoMemberPeer::USER_SITUATION)) $criteria->add(KataoMemberPeer::USER_SITUATION, $this->user_situation); if ($this->isColumnModified(KataoMemberPeer::USER_BIRTHDAY)) $criteria->add(KataoMemberPeer::USER_BIRTHDAY, $this->user_birthday); if ($this->isColumnModified(KataoMemberPeer::PARRAIN_NAME)) $criteria->add(KataoMemberPeer::PARRAIN_NAME, $this->parrain_name); if ($this->isColumnModified(KataoMemberPeer::CREATED_AT)) $criteria->add(KataoMemberPeer::CREATED_AT, $this->created_at); if ($this->isColumnModified(KataoMemberPeer::UPDATED_AT)) $criteria->add(KataoMemberPeer::UPDATED_AT, $this->updated_at); return $criteria; } /** * 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. * * @return Criteria The Criteria object containing value(s) for primary key(s). */ public function buildPkeyCriteria() { $criteria = new Criteria(KataoMemberPeer::DATABASE_NAME); $criteria->add(KataoMemberPeer::ID, $this->id); return $criteria; } /** * Returns the primary key for this object (row). * @return int */ public function getPrimaryKey() { return $this->getId(); } /** * Generic method to set the primary key (id column). * * @param int $key Primary key. * @return void */ public function setPrimaryKey($key) { $this->setId($key); } /** * Sets contents of passed object to values from current object. * * If desired, this method can also make copies of all associated (fkey referrers) * objects. * * @param object $copyObj An object of KataoMember (or compatible) type. * @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row. * @throws PropelException */ public function copyInto($copyObj, $deepCopy = false) { $copyObj->setKataoIndex($this->katao_index); $copyObj->setKataoNodeId($this->katao_node_id); $copyObj->setNextKataoNodeId($this->next_katao_node_id); $copyObj->setKataoMemberId($this->katao_member_id); $copyObj->setFirstName($this->first_name); $copyObj->setLastName($this->last_name); $copyObj->setAccountingCode($this->accounting_code); $copyObj->setAccountingCodeSol($this->accounting_code_sol); $copyObj->setInitialAmountEuro($this->initial_amount_euro); $copyObj->setInitialAmountSol($this->initial_amount_sol); $copyObj->setIsReferer($this->is_referer); $copyObj->setIsDelegate($this->is_delegate); $copyObj->setIsAnonymous($this->is_anonymous); $copyObj->setIsMember($this->is_member); $copyObj->setCardNumberSol($this->card_number_sol); $copyObj->setUserSituation($this->user_situation); $copyObj->setUserBirthday($this->user_birthday); $copyObj->setParrainName($this->parrain_name); $copyObj->setCreatedAt($this->created_at); $copyObj->setUpdatedAt($this->updated_at); if ($deepCopy) { // important: temporarily setNew(false) because this affects the behavior of // the getter/setter methods for fkey referrer objects. $copyObj->setNew(false); foreach($this->getKataoConfigs() as $relObj) { $copyObj->addKataoConfig($relObj->copy($deepCopy)); } foreach($this->getKataoUsers() as $relObj) { $copyObj->addKataoUser($relObj->copy($deepCopy)); } foreach($this->getKataoMembersRelatedByKataoMemberId() as $relObj) { if($this->getPrimaryKey() === $relObj->getPrimaryKey()) { continue; } $copyObj->addKataoMemberRelatedByKataoMemberId($relObj->copy($deepCopy)); } foreach($this->getKataoSuppliersRelatedByMemberId() as $relObj) { $copyObj->addKataoSupplierRelatedByMemberId($relObj->copy($deepCopy)); } foreach($this->getKataoSuppliersRelatedByRefererId() as $relObj) { $copyObj->addKataoSupplierRelatedByRefererId($relObj->copy($deepCopy)); } foreach($this->getKataoInvoices() as $relObj) { $copyObj->addKataoInvoice($relObj->copy($deepCopy)); } foreach($this->getKataoMemberDeposits() as $relObj) { $copyObj->addKataoMemberDeposit($relObj->copy($deepCopy)); } foreach($this->getKataoMemberNodes() as $relObj) { $copyObj->addKataoMemberNode($relObj->copy($deepCopy)); } foreach($this->getKataoAssocMemberGroups() as $relObj) { $copyObj->addKataoAssocMemberGroup($relObj->copy($deepCopy)); } } // if ($deepCopy) $copyObj->setNew(true); $copyObj->setId(NULL); // this is a pkey column, so set to default value } /** * Makes a copy of this object that will be inserted as a new row in table when saved. * It creates a new object filling in the simple attributes, but skipping any primary * keys that are defined for the table. * * If desired, this method can also make copies of all associated (fkey referrers) * objects. * * @param boolean $deepCopy Whether to also copy all rows that refer (by fkey) to the current row. * @return KataoMember Clone of current object. * @throws PropelException */ public function copy($deepCopy = false) { // we use get_class(), because this might be a subclass $clazz = get_class($this); $copyObj = new $clazz(); $this->copyInto($copyObj, $deepCopy); return $copyObj; } /** * Returns a peer instance associated with this om. * * Since Peer classes are not to have any instance attributes, this method returns the * same instance for all member of this class. The method could therefore * be static, but this would prevent one from overriding the behavior. * * @return KataoMemberPeer */ public function getPeer() { if (self::$peer === null) { self::$peer = new KataoMemberPeer(); } return self::$peer; } /** * Declares an association between this object and a KataoNode object. * * @param KataoNode $v * @return void * @throws PropelException */ public function setKataoNodeRelatedByKataoNodeId($v) { if ($v === null) { $this->setKataoNodeId(NULL); } else { $this->setKataoNodeId($v->getId()); } $this->aKataoNodeRelatedByKataoNodeId = $v; } /** * Get the associated KataoNode object * * @param Connection Optional Connection object. * @return KataoNode The associated KataoNode object. * @throws PropelException */ public function getKataoNodeRelatedByKataoNodeId($con = null) { if ($this->aKataoNodeRelatedByKataoNodeId === null && ($this->katao_node_id !== null)) { // include the related Peer class $this->aKataoNodeRelatedByKataoNodeId = KataoNodePeer::retrieveByPK($this->katao_node_id, $con); /* The following can be used instead of the line above to guarantee the related object contains a reference to this object, but this level of coupling may be undesirable in many circumstances. As it can lead to a db query with many results that may never be used. $obj = KataoNodePeer::retrieveByPK($this->katao_node_id, $con); $obj->addKataoNodesRelatedByKataoNodeId($this); */ } return $this->aKataoNodeRelatedByKataoNodeId; } /** * Declares an association between this object and a KataoNode object. * * @param KataoNode $v * @return void * @throws PropelException */ public function setKataoNodeRelatedByNextKataoNodeId($v) { if ($v === null) { $this->setNextKataoNodeId(NULL); } else { $this->setNextKataoNodeId($v->getId()); } $this->aKataoNodeRelatedByNextKataoNodeId = $v; } /** * Get the associated KataoNode object * * @param Connection Optional Connection object. * @return KataoNode The associated KataoNode object. * @throws PropelException */ public function getKataoNodeRelatedByNextKataoNodeId($con = null) { if ($this->aKataoNodeRelatedByNextKataoNodeId === null && ($this->next_katao_node_id !== null)) { // include the related Peer class $this->aKataoNodeRelatedByNextKataoNodeId = KataoNodePeer::retrieveByPK($this->next_katao_node_id, $con); /* The following can be used instead of the line above to guarantee the related object contains a reference to this object, but this level of coupling may be undesirable in many circumstances. As it can lead to a db query with many results that may never be used. $obj = KataoNodePeer::retrieveByPK($this->next_katao_node_id, $con); $obj->addKataoNodesRelatedByNextKataoNodeId($this); */ } return $this->aKataoNodeRelatedByNextKataoNodeId; } /** * Declares an association between this object and a KataoMember object. * * @param KataoMember $v * @return void * @throws PropelException */ public function setKataoMemberRelatedByKataoMemberId($v) { if ($v === null) { $this->setKataoMemberId(NULL); } else { $this->setKataoMemberId($v->getId()); } $this->aKataoMemberRelatedByKataoMemberId = $v; } /** * Get the associated KataoMember object * * @param Connection Optional Connection object. * @return KataoMember The associated KataoMember object. * @throws PropelException */ public function getKataoMemberRelatedByKataoMemberId($con = null) { if ($this->aKataoMemberRelatedByKataoMemberId === null && ($this->katao_member_id !== null)) { // include the related Peer class $this->aKataoMemberRelatedByKataoMemberId = KataoMemberPeer::retrieveByPK($this->katao_member_id, $con); /* The following can be used instead of the line above to guarantee the related object contains a reference to this object, but this level of coupling may be undesirable in many circumstances. As it can lead to a db query with many results that may never be used. $obj = KataoMemberPeer::retrieveByPK($this->katao_member_id, $con); $obj->addKataoMembersRelatedByKataoMemberId($this); */ } return $this->aKataoMemberRelatedByKataoMemberId; } /** * Temporary storage of collKataoConfigs to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoConfigs() { if ($this->collKataoConfigs === null) { $this->collKataoConfigs = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoConfigs from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoConfigs($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoConfigs === null) { if ($this->isNew()) { $this->collKataoConfigs = array(); } else { $criteria->add(KataoConfigPeer::KATAO_MEMBER_ID, $this->getId()); KataoConfigPeer::addSelectColumns($criteria); $this->collKataoConfigs = KataoConfigPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoConfigPeer::KATAO_MEMBER_ID, $this->getId()); KataoConfigPeer::addSelectColumns($criteria); if (!isset($this->lastKataoConfigCriteria) || !$this->lastKataoConfigCriteria->equals($criteria)) { $this->collKataoConfigs = KataoConfigPeer::doSelect($criteria, $con); } } } $this->lastKataoConfigCriteria = $criteria; return $this->collKataoConfigs; } /** * Returns the number of related KataoConfigs. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoConfigs($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoConfigPeer::KATAO_MEMBER_ID, $this->getId()); return KataoConfigPeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoConfig object to this object * through the KataoConfig foreign key attribute * * @param KataoConfig $l KataoConfig * @return void * @throws PropelException */ public function addKataoConfig(KataoConfig $l) { $this->collKataoConfigs[] = $l; $l->setKataoMember($this); } /** * Temporary storage of collKataoUsers to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoUsers() { if ($this->collKataoUsers === null) { $this->collKataoUsers = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoUsers from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoUsers($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoUsers === null) { if ($this->isNew()) { $this->collKataoUsers = array(); } else { $criteria->add(KataoUserPeer::KATAO_MEMBER_ID, $this->getId()); KataoUserPeer::addSelectColumns($criteria); $this->collKataoUsers = KataoUserPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoUserPeer::KATAO_MEMBER_ID, $this->getId()); KataoUserPeer::addSelectColumns($criteria); if (!isset($this->lastKataoUserCriteria) || !$this->lastKataoUserCriteria->equals($criteria)) { $this->collKataoUsers = KataoUserPeer::doSelect($criteria, $con); } } } $this->lastKataoUserCriteria = $criteria; return $this->collKataoUsers; } /** * Returns the number of related KataoUsers. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoUsers($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoUserPeer::KATAO_MEMBER_ID, $this->getId()); return KataoUserPeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoUser object to this object * through the KataoUser foreign key attribute * * @param KataoUser $l KataoUser * @return void * @throws PropelException */ public function addKataoUser(KataoUser $l) { $this->collKataoUsers[] = $l; $l->setKataoMember($this); } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoUsers 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 KataoMember. */ public function getKataoUsersJoinKataoSupplier($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoUsers === null) { if ($this->isNew()) { $this->collKataoUsers = array(); } else { $criteria->add(KataoUserPeer::KATAO_MEMBER_ID, $this->getId()); $this->collKataoUsers = KataoUserPeer::doSelectJoinKataoSupplier($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoUserPeer::KATAO_MEMBER_ID, $this->getId()); if (!isset($this->lastKataoUserCriteria) || !$this->lastKataoUserCriteria->equals($criteria)) { $this->collKataoUsers = KataoUserPeer::doSelectJoinKataoSupplier($criteria, $con); } } $this->lastKataoUserCriteria = $criteria; return $this->collKataoUsers; } /** * Temporary storage of collKataoMembersRelatedByKataoMemberId to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoMembersRelatedByKataoMemberId() { if ($this->collKataoMembersRelatedByKataoMemberId === null) { $this->collKataoMembersRelatedByKataoMemberId = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoMembersRelatedByKataoMemberId from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoMembersRelatedByKataoMemberId($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoMembersRelatedByKataoMemberId === null) { if ($this->isNew()) { $this->collKataoMembersRelatedByKataoMemberId = array(); } else { $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->getId()); KataoMemberPeer::addSelectColumns($criteria); $this->collKataoMembersRelatedByKataoMemberId = KataoMemberPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->getId()); KataoMemberPeer::addSelectColumns($criteria); if (!isset($this->lastKataoMemberRelatedByKataoMemberIdCriteria) || !$this->lastKataoMemberRelatedByKataoMemberIdCriteria->equals($criteria)) { $this->collKataoMembersRelatedByKataoMemberId = KataoMemberPeer::doSelect($criteria, $con); } } } $this->lastKataoMemberRelatedByKataoMemberIdCriteria = $criteria; return $this->collKataoMembersRelatedByKataoMemberId; } /** * Returns the number of related KataoMembersRelatedByKataoMemberId. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoMembersRelatedByKataoMemberId($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->getId()); return KataoMemberPeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoMember object to this object * through the KataoMember foreign key attribute * * @param KataoMember $l KataoMember * @return void * @throws PropelException */ public function addKataoMemberRelatedByKataoMemberId(KataoMember $l) { $this->collKataoMembersRelatedByKataoMemberId[] = $l; $l->setKataoMemberRelatedByKataoMemberId($this); } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoMembersRelatedByKataoMemberId 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 KataoMember. */ public function getKataoMembersRelatedByKataoMemberIdJoinKataoNodeRelatedByKataoNodeId($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoMembersRelatedByKataoMemberId === null) { if ($this->isNew()) { $this->collKataoMembersRelatedByKataoMemberId = array(); } else { $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->getId()); $this->collKataoMembersRelatedByKataoMemberId = KataoMemberPeer::doSelectJoinKataoNodeRelatedByKataoNodeId($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->getId()); if (!isset($this->lastKataoMemberRelatedByKataoMemberIdCriteria) || !$this->lastKataoMemberRelatedByKataoMemberIdCriteria->equals($criteria)) { $this->collKataoMembersRelatedByKataoMemberId = KataoMemberPeer::doSelectJoinKataoNodeRelatedByKataoNodeId($criteria, $con); } } $this->lastKataoMemberRelatedByKataoMemberIdCriteria = $criteria; return $this->collKataoMembersRelatedByKataoMemberId; } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoMembersRelatedByKataoMemberId 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 KataoMember. */ public function getKataoMembersRelatedByKataoMemberIdJoinKataoNodeRelatedByNextKataoNodeId($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoMembersRelatedByKataoMemberId === null) { if ($this->isNew()) { $this->collKataoMembersRelatedByKataoMemberId = array(); } else { $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->getId()); $this->collKataoMembersRelatedByKataoMemberId = KataoMemberPeer::doSelectJoinKataoNodeRelatedByNextKataoNodeId($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoMemberPeer::KATAO_MEMBER_ID, $this->getId()); if (!isset($this->lastKataoMemberRelatedByKataoMemberIdCriteria) || !$this->lastKataoMemberRelatedByKataoMemberIdCriteria->equals($criteria)) { $this->collKataoMembersRelatedByKataoMemberId = KataoMemberPeer::doSelectJoinKataoNodeRelatedByNextKataoNodeId($criteria, $con); } } $this->lastKataoMemberRelatedByKataoMemberIdCriteria = $criteria; return $this->collKataoMembersRelatedByKataoMemberId; } /** * Temporary storage of collKataoSuppliersRelatedByMemberId to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoSuppliersRelatedByMemberId() { if ($this->collKataoSuppliersRelatedByMemberId === null) { $this->collKataoSuppliersRelatedByMemberId = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoSuppliersRelatedByMemberId from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoSuppliersRelatedByMemberId($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoSuppliersRelatedByMemberId === null) { if ($this->isNew()) { $this->collKataoSuppliersRelatedByMemberId = array(); } else { $criteria->add(KataoSupplierPeer::MEMBER_ID, $this->getId()); KataoSupplierPeer::addSelectColumns($criteria); $this->collKataoSuppliersRelatedByMemberId = KataoSupplierPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoSupplierPeer::MEMBER_ID, $this->getId()); KataoSupplierPeer::addSelectColumns($criteria); if (!isset($this->lastKataoSupplierRelatedByMemberIdCriteria) || !$this->lastKataoSupplierRelatedByMemberIdCriteria->equals($criteria)) { $this->collKataoSuppliersRelatedByMemberId = KataoSupplierPeer::doSelect($criteria, $con); } } } $this->lastKataoSupplierRelatedByMemberIdCriteria = $criteria; return $this->collKataoSuppliersRelatedByMemberId; } /** * Returns the number of related KataoSuppliersRelatedByMemberId. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoSuppliersRelatedByMemberId($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoSupplierPeer::MEMBER_ID, $this->getId()); return KataoSupplierPeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoSupplier object to this object * through the KataoSupplier foreign key attribute * * @param KataoSupplier $l KataoSupplier * @return void * @throws PropelException */ public function addKataoSupplierRelatedByMemberId(KataoSupplier $l) { $this->collKataoSuppliersRelatedByMemberId[] = $l; $l->setKataoMemberRelatedByMemberId($this); } /** * Temporary storage of collKataoSuppliersRelatedByRefererId to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoSuppliersRelatedByRefererId() { if ($this->collKataoSuppliersRelatedByRefererId === null) { $this->collKataoSuppliersRelatedByRefererId = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoSuppliersRelatedByRefererId from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoSuppliersRelatedByRefererId($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoSuppliersRelatedByRefererId === null) { if ($this->isNew()) { $this->collKataoSuppliersRelatedByRefererId = array(); } else { $criteria->add(KataoSupplierPeer::REFERER_ID, $this->getId()); KataoSupplierPeer::addSelectColumns($criteria); $this->collKataoSuppliersRelatedByRefererId = KataoSupplierPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoSupplierPeer::REFERER_ID, $this->getId()); KataoSupplierPeer::addSelectColumns($criteria); if (!isset($this->lastKataoSupplierRelatedByRefererIdCriteria) || !$this->lastKataoSupplierRelatedByRefererIdCriteria->equals($criteria)) { $this->collKataoSuppliersRelatedByRefererId = KataoSupplierPeer::doSelect($criteria, $con); } } } $this->lastKataoSupplierRelatedByRefererIdCriteria = $criteria; return $this->collKataoSuppliersRelatedByRefererId; } /** * Returns the number of related KataoSuppliersRelatedByRefererId. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoSuppliersRelatedByRefererId($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoSupplierPeer::REFERER_ID, $this->getId()); return KataoSupplierPeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoSupplier object to this object * through the KataoSupplier foreign key attribute * * @param KataoSupplier $l KataoSupplier * @return void * @throws PropelException */ public function addKataoSupplierRelatedByRefererId(KataoSupplier $l) { $this->collKataoSuppliersRelatedByRefererId[] = $l; $l->setKataoMemberRelatedByRefererId($this); } /** * Temporary storage of collKataoInvoices to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoInvoices() { if ($this->collKataoInvoices === null) { $this->collKataoInvoices = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoInvoices from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoInvoices($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoInvoices === null) { if ($this->isNew()) { $this->collKataoInvoices = array(); } else { $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); KataoInvoicePeer::addSelectColumns($criteria); $this->collKataoInvoices = KataoInvoicePeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); KataoInvoicePeer::addSelectColumns($criteria); if (!isset($this->lastKataoInvoiceCriteria) || !$this->lastKataoInvoiceCriteria->equals($criteria)) { $this->collKataoInvoices = KataoInvoicePeer::doSelect($criteria, $con); } } } $this->lastKataoInvoiceCriteria = $criteria; return $this->collKataoInvoices; } /** * Returns the number of related KataoInvoices. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoInvoices($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); return KataoInvoicePeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoInvoice object to this object * through the KataoInvoice foreign key attribute * * @param KataoInvoice $l KataoInvoice * @return void * @throws PropelException */ public function addKataoInvoice(KataoInvoice $l) { $this->collKataoInvoices[] = $l; $l->setKataoMember($this); } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoInvoices 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 KataoMember. */ public function getKataoInvoicesJoinKataoPeriod($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoInvoices === null) { if ($this->isNew()) { $this->collKataoInvoices = array(); } else { $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); $this->collKataoInvoices = KataoInvoicePeer::doSelectJoinKataoPeriod($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); if (!isset($this->lastKataoInvoiceCriteria) || !$this->lastKataoInvoiceCriteria->equals($criteria)) { $this->collKataoInvoices = KataoInvoicePeer::doSelectJoinKataoPeriod($criteria, $con); } } $this->lastKataoInvoiceCriteria = $criteria; return $this->collKataoInvoices; } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoInvoices 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 KataoMember. */ public function getKataoInvoicesJoinKataoNode($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoInvoices === null) { if ($this->isNew()) { $this->collKataoInvoices = array(); } else { $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); $this->collKataoInvoices = KataoInvoicePeer::doSelectJoinKataoNode($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); if (!isset($this->lastKataoInvoiceCriteria) || !$this->lastKataoInvoiceCriteria->equals($criteria)) { $this->collKataoInvoices = KataoInvoicePeer::doSelectJoinKataoNode($criteria, $con); } } $this->lastKataoInvoiceCriteria = $criteria; return $this->collKataoInvoices; } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoInvoices 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 KataoMember. */ public function getKataoInvoicesJoinKataoCart($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoInvoices === null) { if ($this->isNew()) { $this->collKataoInvoices = array(); } else { $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); $this->collKataoInvoices = KataoInvoicePeer::doSelectJoinKataoCart($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoInvoicePeer::KATAO_MEMBER_ID, $this->getId()); if (!isset($this->lastKataoInvoiceCriteria) || !$this->lastKataoInvoiceCriteria->equals($criteria)) { $this->collKataoInvoices = KataoInvoicePeer::doSelectJoinKataoCart($criteria, $con); } } $this->lastKataoInvoiceCriteria = $criteria; return $this->collKataoInvoices; } /** * Temporary storage of collKataoMemberDeposits to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoMemberDeposits() { if ($this->collKataoMemberDeposits === null) { $this->collKataoMemberDeposits = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoMemberDeposits from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoMemberDeposits($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoMemberDeposits === null) { if ($this->isNew()) { $this->collKataoMemberDeposits = array(); } else { $criteria->add(KataoMemberDepositPeer::KATAO_MEMBER_ID, $this->getId()); KataoMemberDepositPeer::addSelectColumns($criteria); $this->collKataoMemberDeposits = KataoMemberDepositPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoMemberDepositPeer::KATAO_MEMBER_ID, $this->getId()); KataoMemberDepositPeer::addSelectColumns($criteria); if (!isset($this->lastKataoMemberDepositCriteria) || !$this->lastKataoMemberDepositCriteria->equals($criteria)) { $this->collKataoMemberDeposits = KataoMemberDepositPeer::doSelect($criteria, $con); } } } $this->lastKataoMemberDepositCriteria = $criteria; return $this->collKataoMemberDeposits; } /** * Returns the number of related KataoMemberDeposits. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoMemberDeposits($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoMemberDepositPeer::KATAO_MEMBER_ID, $this->getId()); return KataoMemberDepositPeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoMemberDeposit object to this object * through the KataoMemberDeposit foreign key attribute * * @param KataoMemberDeposit $l KataoMemberDeposit * @return void * @throws PropelException */ public function addKataoMemberDeposit(KataoMemberDeposit $l) { $this->collKataoMemberDeposits[] = $l; $l->setKataoMember($this); } /** * Temporary storage of collKataoMemberNodes to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoMemberNodes() { if ($this->collKataoMemberNodes === null) { $this->collKataoMemberNodes = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoMemberNodes from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoMemberNodes($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoMemberNodes === null) { if ($this->isNew()) { $this->collKataoMemberNodes = array(); } else { $criteria->add(KataoMemberNodePeer::KATAO_MEMBER_ID, $this->getId()); KataoMemberNodePeer::addSelectColumns($criteria); $this->collKataoMemberNodes = KataoMemberNodePeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoMemberNodePeer::KATAO_MEMBER_ID, $this->getId()); KataoMemberNodePeer::addSelectColumns($criteria); if (!isset($this->lastKataoMemberNodeCriteria) || !$this->lastKataoMemberNodeCriteria->equals($criteria)) { $this->collKataoMemberNodes = KataoMemberNodePeer::doSelect($criteria, $con); } } } $this->lastKataoMemberNodeCriteria = $criteria; return $this->collKataoMemberNodes; } /** * Returns the number of related KataoMemberNodes. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoMemberNodes($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoMemberNodePeer::KATAO_MEMBER_ID, $this->getId()); return KataoMemberNodePeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoMemberNode object to this object * through the KataoMemberNode foreign key attribute * * @param KataoMemberNode $l KataoMemberNode * @return void * @throws PropelException */ public function addKataoMemberNode(KataoMemberNode $l) { $this->collKataoMemberNodes[] = $l; $l->setKataoMember($this); } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoMemberNodes 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 KataoMember. */ public function getKataoMemberNodesJoinKataoNode($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoMemberNodes === null) { if ($this->isNew()) { $this->collKataoMemberNodes = array(); } else { $criteria->add(KataoMemberNodePeer::KATAO_MEMBER_ID, $this->getId()); $this->collKataoMemberNodes = KataoMemberNodePeer::doSelectJoinKataoNode($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoMemberNodePeer::KATAO_MEMBER_ID, $this->getId()); if (!isset($this->lastKataoMemberNodeCriteria) || !$this->lastKataoMemberNodeCriteria->equals($criteria)) { $this->collKataoMemberNodes = KataoMemberNodePeer::doSelectJoinKataoNode($criteria, $con); } } $this->lastKataoMemberNodeCriteria = $criteria; return $this->collKataoMemberNodes; } /** * Temporary storage of collKataoAssocMemberGroups to save a possible db hit in * the event objects are add to the collection, but the * complete collection is never requested. * @return void */ public function initKataoAssocMemberGroups() { if ($this->collKataoAssocMemberGroups === null) { $this->collKataoAssocMemberGroups = array(); } } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember has previously * been saved, it will retrieve related KataoAssocMemberGroups from storage. * If this KataoMember is new, it will return * an empty collection or the current collection, the criteria * is ignored on a new object. * * @param Connection $con * @param Criteria $criteria * @throws PropelException */ public function getKataoAssocMemberGroups($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoAssocMemberGroups === null) { if ($this->isNew()) { $this->collKataoAssocMemberGroups = array(); } else { $criteria->add(KataoAssocMemberGroupPeer::MEMBER_ID, $this->getId()); KataoAssocMemberGroupPeer::addSelectColumns($criteria); $this->collKataoAssocMemberGroups = KataoAssocMemberGroupPeer::doSelect($criteria, $con); } } else { // criteria has no effect for a new object if (!$this->isNew()) { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoAssocMemberGroupPeer::MEMBER_ID, $this->getId()); KataoAssocMemberGroupPeer::addSelectColumns($criteria); if (!isset($this->lastKataoAssocMemberGroupCriteria) || !$this->lastKataoAssocMemberGroupCriteria->equals($criteria)) { $this->collKataoAssocMemberGroups = KataoAssocMemberGroupPeer::doSelect($criteria, $con); } } } $this->lastKataoAssocMemberGroupCriteria = $criteria; return $this->collKataoAssocMemberGroups; } /** * Returns the number of related KataoAssocMemberGroups. * * @param Criteria $criteria * @param boolean $distinct * @param Connection $con * @throws PropelException */ public function countKataoAssocMemberGroups($criteria = null, $distinct = false, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } $criteria->add(KataoAssocMemberGroupPeer::MEMBER_ID, $this->getId()); return KataoAssocMemberGroupPeer::doCount($criteria, $distinct, $con); } /** * Method called to associate a KataoAssocMemberGroup object to this object * through the KataoAssocMemberGroup foreign key attribute * * @param KataoAssocMemberGroup $l KataoAssocMemberGroup * @return void * @throws PropelException */ public function addKataoAssocMemberGroup(KataoAssocMemberGroup $l) { $this->collKataoAssocMemberGroups[] = $l; $l->setKataoMember($this); } /** * If this collection has already been initialized with * an identical criteria, it returns the collection. * Otherwise if this KataoMember is new, it will return * an empty collection; or if this KataoMember has previously * been saved, it will retrieve related KataoAssocMemberGroups 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 KataoMember. */ public function getKataoAssocMemberGroupsJoinKataoMemberGroup($criteria = null, $con = null) { // include the Peer class if ($criteria === null) { $criteria = new Criteria(); } elseif ($criteria instanceof Criteria) { $criteria = clone $criteria; } if ($this->collKataoAssocMemberGroups === null) { if ($this->isNew()) { $this->collKataoAssocMemberGroups = array(); } else { $criteria->add(KataoAssocMemberGroupPeer::MEMBER_ID, $this->getId()); $this->collKataoAssocMemberGroups = KataoAssocMemberGroupPeer::doSelectJoinKataoMemberGroup($criteria, $con); } } else { // the following code is to determine if a new query is // called for. If the criteria is the same as the last // one, just return the collection. $criteria->add(KataoAssocMemberGroupPeer::MEMBER_ID, $this->getId()); if (!isset($this->lastKataoAssocMemberGroupCriteria) || !$this->lastKataoAssocMemberGroupCriteria->equals($criteria)) { $this->collKataoAssocMemberGroups = KataoAssocMemberGroupPeer::doSelectJoinKataoMemberGroup($criteria, $con); } } $this->lastKataoAssocMemberGroupCriteria = $criteria; return $this->collKataoAssocMemberGroups; } public function __call($method, $arguments) { if (!$callable = sfMixer::getCallable('BaseKataoMember:'.$method)) { throw new sfException(sprintf('Call to undefined method BaseKataoMember::%s', $method)); } array_unshift($arguments, $this); return call_user_func_array($callable, $arguments); } } // BaseKataoMember