/propelorm/generator/lib/behavior/archivable/templates/queryUpdateWithoutArchive.php
https://bitbucket.org/franhb/propel · PHP · 16 lines · 5 code · 2 blank · 9 comment · 0 complexity · 856a4de9b9d46de5207817cf9cd1b20b MD5 · raw file
- /**
- * Delete records matching the current query without archiving them.
- *
- * @param array $values Associative array of keys and values to replace
- * @param PropelPDO $con an optional connection object
- * @param boolean $forceIndividualSaves If false (default), the resulting call is a BasePeer::doUpdate(), ortherwise it is a series of save() calls on all the found objects
- *
- * @return integer the number of deleted rows
- */
- public function updateWithoutArchive($values, $con = null, $forceIndividualSaves = false)
- {
- $this->archiveOnUpdate = false;
- return $this->update($values, $con, $forceIndividualSaves);
- }