AdminPage::enterSearchDate PHP Method

enterSearchDate() public method

public enterSearchDate ( $dateType, $startDate, $endDate )
    public function enterSearchDate($dateType, $startDate, $endDate)
    {
        if ($dateType == 'Import') {
            $this->getElement('logImportDate')->check();
        } elseif ($dateType == 'Study') {
            $this->getElement('logStudyDate')->check();
        } else {
            throw new BehaviorException("Warning!! Invalid date type option specified!");
        }
        $this->getElement('logFromDate')->setValue($startDate);
        $this->getElement('logToDate')->setValue($endDate);
    }