[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/modules/Settings/Profiles/views/ -> EditAjax.php (source)

   1  <?php
   2  /*+***********************************************************************************

   3   * The contents of this file are subject to the vtiger CRM Public License Version 1.0

   4   * ("License"); You may not use this file except in compliance with the License

   5   * The Original Code is:  vtiger CRM Open Source

   6   * The Initial Developer of the Original Code is vtiger.

   7   * Portions created by vtiger are Copyright (C) vtiger.

   8   * All Rights Reserved.

   9   *************************************************************************************/
  10  
  11  Class Settings_Profiles_EditAjax_View extends Settings_Profiles_Edit_View {
  12  
  13      public function preProcess(Vtiger_Request $request) {
  14          return true;
  15      }
  16      
  17      public function postProcess(Vtiger_Request $request) {
  18          return true;
  19      }
  20      
  21      public function process(Vtiger_Request $request) {
  22          echo $this->getContents($request);
  23      }
  24      
  25      public function getContents(Vtiger_Request $request) {
  26          $this->initialize($request);
  27          
  28          $qualifiedModuleName = $request->getModule(false);
  29          $viewer = $this->getViewer ($request);
  30          $viewer->assign('SCRIPTS', $this->getHeaderScripts($request));
  31          return $viewer->view('EditViewContents.tpl',$qualifiedModuleName,true);
  32      }
  33      
  34      /**

  35       * Function to get the list of Script models to be included

  36       * @param Vtiger_Request $request

  37       * @return <Array> - List of Vtiger_JsScript_Model instances

  38       */
  39  	function getHeaderScripts(Vtiger_Request $request) {
  40          $moduleName = $request->getModule();
  41  
  42          $jsFileNames = array(
  43              "modules.Settings.Profiles.resources.Profiles",
  44          );
  45          $jsScriptInstances = $this->checkAndConvertJsScripts($jsFileNames);
  46          return $jsScriptInstances;
  47      }
  48      
  49  }


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1