コード例 #1
0
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('addRelation');
     $this->exposeMethod('deleteRelation');
     $this->exposeMethod('getRelatedListPageCount');
 }
コード例 #2
0
ファイル: PDF.php プロジェクト: nikdejan/YetiForceCRM
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('hasValidTemplate');
     $this->exposeMethod('validateRecords');
     $this->exposeMethod('generate');
 }
コード例 #3
0
ファイル: TagCloud.php プロジェクト: cin-system/cinrepo
 function __construct()
 {
     global $log;
     $log->debug("Entering ./actions/TagCloud.php::__construct");
     parent::__construct();
     $this->exposeMethod('save');
     $this->exposeMethod('delete');
 }
コード例 #4
0
ファイル: IndexAjax.php プロジェクト: cin-system/cinrepo
 function __construct()
 {
     parent::__construct();
     $Methods = array('checkDuplicateKey', 'SaveCustomLabel', 'SaveCustomLabelValues', 'DeleteCustomLabels', 'SaveProductBlock', 'deleteProductBlocks', 'downloadMPDF', 'downloadFile', 'installExtension', 'savePDFBreakline', 'CheckDuplicateTemplateName', 'ChangeActiveOrDefault');
     foreach ($Methods as $method) {
         $this->exposeMethod($method);
     }
 }
コード例 #5
0
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('indexTyped');
     $this->exposeMethod('stateTyped');
     $this->exposeMethod('checkEnable');
     $this->exposeMethod('fullAddressTyped');
     $this->kladrService = new KladrService();
 }
コード例 #6
0
ファイル: IndexAjax.php プロジェクト: cin-system/cinrepo
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('getStep5Columns');
     $this->exposeMethod('getStep5SUMColumns');
     $this->exposeMethod('getFilterColHtml');
     $this->exposeMethod('getFilterDateHtml');
     $this->exposeMethod('DownloadFile');
     $this->exposeMethod('ExportXLS');
     $this->exposeMethod('showSettingsList');
     $this->exposeMethod('addWidget');
 }
コード例 #7
0
ファイル: Controller.php プロジェクト: reeid/YetiForceCRM
 function __construct()
 {
     parent::__construct();
 }
コード例 #8
0
ファイル: Workflow.php プロジェクト: awflu/YetiForceCRM
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('execute');
 }
コード例 #9
0
ファイル: Mobile.php プロジェクト: awflu/YetiForceCRM
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('performCall');
 }
コード例 #10
0
ファイル: Folder.php プロジェクト: cin-system/cinrepo
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('save');
     $this->exposeMethod('delete');
 }
コード例 #11
0
ファイル: Calendar.php プロジェクト: rcrrich/UpdatePackages
 function __construct()
 {
     parent::__construct();
     $this->exposeMethod('getEvent');
     $this->exposeMethod('updateEvent');
 }