<?php
/**
 * Description of Select
 *
 * @author arson
 */
class Eppe_Db_Table_Select extends Zend_Db_Table_Select {

	public function onlyActive() {
		$this->where('active = 1');
		return $this;
	}

	public function inOrder() {
		$this->order('order');
		return $this;
	}

	public function byColumn($columnName, $columnVal) {
		$this->where("$columnName = ?", $columnVal);
		return $this;
	}

}
?>
