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
#include <EtherCard.h> | |
int output_pin = 7; | |
int output_time_on = 500; | |
static byte mac_address[] = {0x42,0x42,0x42,0x42,0x42,0x42}; | |
const char url_crm_proxy[] PROGMEM = "your-sugarcrm-proxy-url.com"; | |
const char uri_crm_proxy[] PROGMEM = "/"; | |
byte Ethernet::buffer[700]; | |
static byte current_session; |
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
{ | |
"require": { | |
"spinegar/sugar7wrapper": "dev-master" | |
}, | |
"minimum-stability": "dev" | |
} |
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
({ | |
extendsFrom: 'RecordView', | |
initialize: function(options) | |
{ | |
this._super('initialize', [options]); | |
}, | |
_render: function() | |
{ |
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 | |
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point'); | |
class TeamSecurity extends SugarVisibility | |
{ | |
public function addVisibilityFrom(&$query) | |
{ | |
return $query; | |
} |
NewerOlder