Controller_Actions::action_contact PHP Метод

action_contact() публичный Метод

public action_contact ( )
    public function action_contact()
    {
        if ($_POST) {
            echo "<div class='notice'>This is a sample website, why are you trying to contact it?</div>";
        }
        $this->request->response = View::factory('contact');
    }
Controller_Actions