This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* File: ./custom/Extension/modules/Trackers/Ext/Vardefs/idx_user_del_vis.ext.php */ | |
$dictionary['Tracker']['indices'][] = array ( | |
'name' => 'idx_tracker_userid_del_vis', | |
'type' => 'index', | |
'fields' => | |
array ( | |
0 => 'user_id', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
({ | |
/* File: ./custom/modules/Notes/clients/base/views/create/create.js */ | |
extendsFrom: 'CreateView', | |
save: function(){ | |
this._super('save'); | |
//TODO: Add logic to check if parent model exists to verify if being created via subpanel or other means. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
({ | |
/* File: ./custom/modules/Contacts/clients/base/views/create/create.js */ | |
extendsFrom:'CreateView', | |
initialize: function(options){ | |
this._super('initialize', [options]); | |
this.model.on('change:account_id', this.test, this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* File: ./custom/Extension/application/Ext/Language/en_us.news.lang.ext.php */ | |
$app_strings['LBL_DASHLET_NEWS_NAME'] = 'Google News'; | |
$app_strings['LBL_DASHLET_NEWS_DESC'] = 'Google News search results for the current Account record.'; | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
({ | |
/* File: ./custom/modules/Users/clients/base/views/selection-list/selection-list.js */ | |
extendsFrom: 'SelectionListView', | |
initialize: function(options){ | |
this._super('initialize', [options]); | |
this.collection.orderBy = {'field':'full_name', 'direction':'asc'}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* File: ./custom/clients/base/api/FakeLinkApi.php */ | |
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); | |
class FakeLinkApi extends SugarApi { | |
public function registerApiRest() { | |
return array( | |
'filterRelatedRecords' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* File: ./custom/Extension/modules/<Module>/Ext/Vardefs */ | |
$dictionary['Account']['activity_enabled'] = false; | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* SugarCRM v7 REST API Wrapper | |
* | |
* Date: May 13, 2014 | |
* | |
* Author: Angel Magaña | |
* | |
* Contact: cheleguanaco[at]cheleguanaco.com | |
* cheleguanaco.com | |
* | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* File: ./custom/include/externalAPI/Marketo/LogicHookController.php */ | |
/* | |
* Copyright (c) 2014-2015 SugarCRM Inc. This product is licensed by SugarCRM | |
* pursuant to the terms of the End User License Agreement available at | |
* http://support.sugarcrm.com/06_Customer_Center/10_Master_Subscription_Agreements/10_Marketo/ | |
*/ |