Skip to content

Instantly share code, notes, and snippets.

@chicks
Last active December 11, 2015 06:28
Show Gist options
  • Save chicks/4559127 to your computer and use it in GitHub Desktop.
Save chicks/4559127 to your computer and use it in GitHub Desktop.
Zend Framework Library Usage in SugarCRM
# grep -R require * | grep -i zend | grep -v '^Zend'
custom/modules/Schedulers/ConnectionsActivityStreamPublisherJob.php: require_once('Zend/Http/client.php');
include/externalAPI/Google/ExtAPIGoogle.php:require_once('Zend/Gdata/Docs.php');
include/externalAPI/Google/ExtAPIGoogle.php:require_once('Zend/Gdata/Docs/Query.php');
include/externalAPI/Google/ExtAPIGoogle.php:require_once('Zend/Gdata/ClientLogin.php');
include/externalAPI/Google/ExtAPIGoogle.php:require_once('Zend/Gdata/Contacts.php');
include/SugarCache/SugarCacheZend.php: * requirements.
include/SugarCache/SugarCacheZend.php:require_once('include/SugarCache/SugarCacheAbstract.php');
include/SugarOauth.php: require_once 'Zend/Oauth/Consumer.php';
modules/OAuthKeys/OAuthKey.php:require_once 'Zend/Oauth/Provider.php';
modules/OAuthTokens/OAuthToken.php:require_once 'Zend/Oauth/Provider.php';
# grep -R "Zend_Loader" * | grep -v '^Zend'
include/SugarOauth.php: Zend_Loader::loadClass('Zend_Http_Client_Adapter_Proxy');
@chicks
Copy link
Author

chicks commented Jan 17, 2013

This was done against SugarCRM Ultimate 6.5.8, btw.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment