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(); } }