예제 #1
0
 function getValues()
 {
     $values = parent::getValues();
     unset($values[self::TRACKER_ID], $values[self::PROTECTOR_ID]);
     return $values;
 }
예제 #2
0
파일: Form.php 프로젝트: krecek/nrsn
	/**
	 * Returns the values submitted by the form.
	 * @return NArrayHash|array
	 */
	public function getValues($asArray = FALSE)
	{
		$values = parent::getValues($asArray);
		unset($values[self::TRACKER_ID], $values[self::PROTECTOR_ID]);
		return $values;
	}