MessageController::index PHP Method

index() public method

Main page. Show all messages.
Since: 2.0.0
public index ( )
    public function index()
    {
        $this->permission('Garden.Community.Manage');
        $this->setHighlightRoute('dashboard/message');
        $this->addJsFile('jquery.autosize.min.js');
        $this->addJsFile('jquery.tablednd.js');
        $this->title(t('Messages'));
        Gdn_Theme::section('Moderation');
        // Load all messages from the db
        $this->MessageData = $this->MessageModel->get('Sort');
        $this->render();
    }