View FakeLinkApi.php
<?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( |
View format-stmt.php
<?php | |
function format_sugar_query(SugarQuery $query) | |
{ | |
return format_builder( | |
$query->compile() | |
); | |
} | |
function format_builder(\Doctrine\DBAL\Query\QueryBuilder $builder) |
View HasUserRoleNameExpression.php
<?php | |
/** | |
* Project: SugarCRM Logic Expression for checking User role | |
* Original Dev: Antonio Musarra, January 2014 | |
* @2009-2014 Antonio Musarra <antonio.musarra[at]gmail.com> | |
* | |
* Desc: SugarCRM Logic Expression ext class | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by |
View SugarCronFilteredJobs.php
<?php | |
if (!defined('sugarEntry') || !sugarEntry) { | |
die('Not A Valid Entry Point'); | |
} | |
require_once 'include/SugarQueue/SugarCronJobs.php'; | |
require_once 'custom/include/SugarQueue/SugarJobFilteredQueue.php'; | |
// Sample configuration: | |
// |
View docker-compose.diff
diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml | |
index c45ae579..c47fcf14 100644 | |
--- a/backend/docker-compose.yml | |
+++ b/backend/docker-compose.yml | |
@@ -46,6 +46,9 @@ services: | |
- new_db | |
- redis | |
# - corenlp | |
+ networks: | |
+ - default |
View PostalCodeValidator.js
(function (app) { | |
app.events.on("app:init", function () { | |
/** | |
* This plugin allows views that contain *_postalcode attributes | |
* to be wired up with a keypress event that will contact a postal-code validator | |
* service | |
* | |
* <pre><code> | |
* { | |
* //Sample component |
View mapNewFields.php
<?php | |
//File: /custom/Extension/modules/Leads/Ext/clients/base/layouts/convert-main/mapNewFields.php | |
//One Gotcha with this, this file will be required | |
//when metadata is being rebuilt and so you must avoid defining the following | |
//variable names here: $module and $type | |
//Doing so will override those variables in the MetaDatFiles parser and cause | |
//un-expected results. |