PATH:
home
/
letacommog
/
crmleta
/
modules
/
Vtiger
/
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 Vtiger_SaveStar_Action extends Vtiger_Mass_Action { function checkPermission(Vtiger_Request $request) { //Return true as WebUI.php is already checking for module permission return true; } public function process(Vtiger_Request $request) { $module = $request->get('module'); if ($request->has('selected_ids')) { $recordIds = $this->getRecordsListFromRequest($request); } else { $recordIds = array($request->get('record')); } $moduleUserSpecificTableName = Vtiger_Functions::getUserSpecificTableName($module); //TODO : Currently we are not doing retrieve_entity_info before doing save since we have only one user specific field(starred) // if we add more user specific field then we need to peform retrieve_entity_info foreach ($recordIds as $recordId) { $focus = CRMEntity::getInstance($module); $focus->mode = "edit"; $focus->id = $recordId; $focus->column_fields->startTracking(); $focus->column_fields['starred'] = $request->get('value'); $focus->insertIntoEntityTable($moduleUserSpecificTableName, $module); } $response = new Vtiger_Response(); $response->setResult(true); $response->emit(); } }
[+]
..
[-] RecipientPreferencesSaveAjax.php
[edit]
[-] SaveWidgetPositions.php
[edit]
[-] DashBoardTab.php
[edit]
[-] GetData.php
[edit]
[-] MentionedUsers.php
[edit]
[-] SaveWidgetSize.php
[edit]
[-] DeleteAjax.php
[edit]
[-] NoteBook.php
[edit]
[-] DeleteImage.php
[edit]
[-] MassSave.php
[edit]
[-] SaveAjax.php
[edit]
[-] Save.php
[edit]
[-] RelatedRecordsAjax.php
[edit]
[-] DownloadAttachment.php
[edit]
[-] TagCloud.php
[edit]
[-] RelationAjax.php
[edit]
[-] ExportData.php
[edit]
[-] Mass.php
[edit]
[-] RemoveWidget.php
[edit]
[-] ProcessDuplicates.php
[edit]
[-] SaveStar.php
[edit]
[-] MassDelete.php
[edit]
[-] Delete.php
[edit]
[-] BasicAjax.php
[edit]