Ejemplo n.º 1
0
	public function getDefaultQuery() {
		$query = parent::getDefaultQuery();
		$query['type'] = $this->typeCGI; // arrays won't work here
		$query['user'] = $this->performer;
		$query['month'] = $this->mMonth;
		$query['year'] = $this->mYear;
		return $query;
	}
Ejemplo n.º 2
0
 function getDefaultQuery()
 {
     $query = parent::getDefaultQuery();
     $query['target'] = $this->target;
     return $query;
 }
Ejemplo n.º 3
0
 function getDefaultQuery()
 {
     parent::getDefaultQuery();
     unset($this->mDefaultQuery['from']);
     return $this->mDefaultQuery;
 }
	function getDefaultQuery() {
		return parent::getDefaultQuery() + $this->mQuery->getDefaultQuery();
	}
Ejemplo n.º 5
0
 public function getDefaultQuery()
 {
     $query = parent::getDefaultQuery();
     $query['type'] = $this->type;
     $query['user'] = $this->user;
     $query['month'] = $this->mMonth;
     $query['year'] = $this->mYear;
     return $query;
 }