Пример #1
0
    public function previous_season()
    {
        if (!$this->start_date) {
            return null;
        } else {
            return Season::find_one_by_where('
					start_date < \'' . $this->start_date('Y-m-d') . '\' 
					OR start_date IS NULL 
				ORDER BY
					start_date DESC');
        }
    }