Blame view

libraries/nextend2/nextend/library/applications/system/backend/controllers/ajax/Link.php 341 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php

class N2SystemBackendLinkControllerAjax extends N2BackendControllerAjax
{

    public function actionSearch() {
        $this->validateToken();
        N2Loader::import('libraries.models.link', 'platform');

        $keyword = N2Request::getVar('keyword', '');
        $this->response->respond(N2ModelsLink::search($keyword));
    }
}