1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
doctrine2/Doctrine/Session/Common.php
doctrine e3df7b6bd0
2006-08-07 22:25:25 +00:00

18 lines
544 B
PHP

<?php
/**
* standard session, the parent of pgsql, mysql and sqlite
*/
class Doctrine_Session_Common extends Doctrine_Session {
public function modifyLimitQuery($query,$limit = false,$offset = false) {
if($limit && $offset) {
$query .= " LIMIT ".$limit." OFFSET ".$offset;
} elseif($limit && ! $offset) {
$query .= " LIMIT ".$limit;
} elseif( ! $limit && $offset) {
$query .= " LIMIT 999999999999 OFFSET ".$offset;
}
return $query;
}
}
?>