MessageController::add PHP Method

add() public method

Form to create a new message.
Since: 2.0.0
public add ( )
    public function add()
    {
        $this->permission('Garden.Community.Manage');
        // Use the edit form with no MessageID specified.
        $this->View = 'Edit';
        $this->edit();
    }