This file contains 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
<input id="campaign_id" name="campaign_id" type="hidden" value="71ac8f35-21ec-8a58-6539-4b01cabd595f" /> | |
<input id="assigned_user_id" name="assigned_user_id" type="hidden" value="1" /> | |
<input id="team_id" name="team_id" type="hidden" value="9abf4efb-0493-0c97-6bd6-4ae788ab1398" /> | |
<input id="req_id" name="req_id" type="hidden" value="last_name;" /> | |
<input id="lead_source" name="lead_source" type="hidden" value="Campaign" /> |
This file contains 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
<input id="campaign_id" name="campaign_id" type="hidden" value="71ac8f35-21ec-8a58-6539-4b01cabd595f" /> | |
<input id="assigned_user_id" name="assigned_user_id" type="hidden" value="1" /> | |
<input id="team_id" name="team_id" type="hidden" value="9abf4efb-0493-0c97-6bd6-4ae788ab1398" /> | |
<input id="req_id" name="req_id" type="hidden" value="last_name;" /> |
This file contains 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
using System; | |
using System.Text; | |
using System.Security.Cryptography; | |
using System.Collections.Specialized; | |
namespace SugarSoap | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains 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
equal($followupdate_c, today()) |
This file contains 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 | |
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); | |
//Points to 'modules/Accounts/views/view.detail.php' instead of 'include/MVC/View/views/view.detail.php' since accounts already overrides the stock view | |
//require_once('include/MVC/View/views/view.detail.php'); | |
require_once('modules/Accounts/views/view.detail.php'); | |
class CustomAccountsViewDetail extends AccountsViewDetail | |
{ |
This file contains 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
or(equal($description,""),equal(strToLower(string($description)),"null")) |
This file contains 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
not(or(equal($description,""),equal(strToLower(string($description)),"null"))) |
This file contains 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
not(or(equal($description,""),equal(strToLower(string($description)),"null"))) |
This file contains 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
concat($first_name, " ", $last_name) |
This file contains 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
(function() { | |
tinymce.create('tinymce.plugins.CustomSetFontPlugin', { | |
/** | |
* Initializes the plugin, this will be executed after the plugin has been created. | |
* This call is done before the editor instance has finished it's initialization so use the onInit event | |
* of the editor instance to intercept that event. | |
* | |
* @param {tinymce.Editor} ed Editor instance that the plugin is initialized in. |