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
/*.log | |
/*.php | |
/*.json | |
/*.swp | |
/*.xml | |
**/.DS_Store | |
/LICENSE | |
/pdf.php | |
/image.php | |
/install/ |
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 | |
//Use an unlimited amount of memory, we probably shouldn't do this but that is how I roll | |
ini_set('memory_limit', '-1'); | |
//Our program allows us to skip over rows in the data file and only load a sub-set of rows | |
if (count($argv) < 3 || ! is_numeric($argv[1]) || ! is_numeric($argv[2])) { | |
echo "Usage php -f $argv[0] skip max" . PHP_EOL; | |
echo " skip - number of rows to skip when processing" . PHP_EOL; | |
echo " max - number of rows to import when processing" . PHP_EOL; |
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
#!/usr/bin/php | |
<?php | |
/* | |
* Copyright 2013 | |
* Jeff Bickart | |
* @bickart | |
* jeff @ neposystems.com | |
*/ |
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
<img src="https://nepo.box.com/shared/static/d3wqfhyoaizu8146vlyc.png" /> | |
<h3>Twitter: @bickart</h3> | |
<h3>Twitter: @bickart</h3> |
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 | |
/* | |
* Created on Aug 27, 2012 | |
* | |
* Jeff Bickart | |
* @bickart | |
* NEPO Systems, LLC | |
* | |
* custom/Extension/application/Ext/TableDictionary/custom_indexes.php | |
*/ |
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 | |
/** | |
* Utility class that use SugarCRM Rest to create a Note and associate to a Case | |
*/ | |
class nepoUtils { | |
const HOME = 'http://<yourcrm>/service/v4_1/rest.php'; | |
protected $curl; | |
protected $session; |
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 | |
/** | |
* August 1, 2012 | |
* | |
* Jeff Bickart | |
* Twitter: @bickart | |
* Blog: http://sugarcrm-dev.blogspot.com/ | |
* | |
* The following is a example of usage of the tincheck.com web-service to test the ValidateTinName |