| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/demosurveyV7/modules/CTSurveyQuestionAnswer/models/ |
Upload File : |
<?php
/* * *******************************************************************************
* The content of this file is subject to the CRMTiger Pro license.
* ("License"); You may not use this file except in compliance with the License
* The Initial Developer of the Original Code is https://crmtiger.com/
* Portions created by CRMTiger.com are Copyright(C) CRMTiger.com
* All Rights Reserved.
* ****************************************************************************** */
class CTSurveyQuestionAnswer_Module_Model extends Vtiger_Module_Model {
public function getListViewName() {
return 'List';
}
//List view Button hide
public function getModuleBasicLinks(){
return false;
}
/**
* Function to get Settings links
* @return <Array>
*/
public function getSettingLinks(){
return false;
}
/**
* Function to get the url for list view of the module
* @return <string> - url
*/
public function getListViewUrl() {
return 'index.php?module='.$this->get('name').'&view='.$this->getListViewName();
}
public function getDefaultViewName() {
return 'List';
}
/**
* Function to get the EditView Component Name
* @return string
*/
public function getEditViewName(){
return 'Edit';
}
/**
* Function to get the url for the Import action of the module
* @return <String> - url
*/
public function getImportUrl() {
return false;
}
/**
* Function to get the url for the Export action of the module
* @return <String> - url
*/
public function getExportUrl() {
return 'index.php?module='.$this->get('name').'&view=Export';
}
/**
* Function to check whether the module is an entity type module or not
* @return <Boolean> true/false
*/
public function isEntityModule() {
return ($this->isentitytype== '1') ? true :false ;
}
/**
* Function to check whether the module is enabled for quick create
* @return <Boolean> - true/false
*/
public function isQuickCreateSupported() {
return $this->isEntityModule();
}
}