PATH:
home
/
letacommog
/
crmleta
/
modules
/
Users
/
actions
<?php /* +********************************************************************************** * The contents of this file are subject to the vtiger CRM Public License Version 1.1 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. * ***********************************************************************************/ class Users_ExportData_Action extends Vtiger_ExportData_Action { var $exportableFields = array( 'user_name' => 'User Name', 'title' => 'Title', 'first_name' => 'First Name', 'last_name' => 'Last Name', 'email1' => 'Email', 'email2' => 'Other Email', 'secondaryemail'=> 'Secondary Email', 'phone_work' => 'Office Phone', 'phone_mobile' => 'Mobile', 'phone_fax' => 'Fax', 'address_street'=> 'Street', 'address_city' => 'City', 'address_state' => 'State', 'address_country' => 'Country', 'address_postalcode'=> 'Postal Code'); /** * Function exports the data based on the mode * @param Vtiger_Request $request */ function ExportData(Vtiger_Request $request) { $db = PearDatabase::getInstance(); $moduleName = $request->get('source_module'); if ($moduleName) { $this->moduleInstance = Vtiger_Module_Model::getInstance($moduleName); $this->moduleFieldInstances = $this->moduleInstance->getFields(); $this->focus = CRMEntity::getInstance($moduleName); $query = $this->getExportQuery($request); $result = $db->pquery($query, array()); $headers = $this->exportableFields; foreach ($headers as $header) { $translatedHeaders[] = vtranslate(html_entity_decode($header, ENT_QUOTES), $moduleName); } $entries = array(); for ($i=0; $i<$db->num_rows($result); $i++) { $entries[] = $db->fetchByAssoc($result, $i); } return $this->output($request, $translatedHeaders, $entries); } } /** * Function that generates Export Query based on the mode * @param Vtiger_Request $request * @return <String> export query */ function getExportQuery(Vtiger_Request $request) { $currentUser = Users_Record_Model::getCurrentUserModel(); $cvId = $request->get('viewname'); $moduleName = $request->get('source_module'); $queryGenerator = new QueryGenerator($moduleName, $currentUser); if (!empty($cvId)) { $queryGenerator->initForCustomViewById($cvId); } $acceptedFields = array_keys($this->exportableFields); $queryGenerator->setFields($acceptedFields); return $queryGenerator->getQuery(); } }
[+]
..
[-] ForgotPassword.php
[edit]
[-] ListAjax.php
[edit]
[-] IndexAjax.php
[edit]
[-] UI5.php
[edit]
[-] SaveCalendarSettings.php
[edit]
[-] SystemSetupSave.php
[edit]
[-] DeleteImage.php
[edit]
[-] ExportData.php
[edit]
[-] BasicAjax.php
[edit]
[-] Logout.php
[edit]
[-] Login.php
[edit]
[-] SaveAjax.php
[edit]
[-] Save.php
[edit]
[-] UserSetupSave.php
[edit]
[-] DeleteAjax.php
[edit]