sfContactGrabberPlugin ============== **The 'sfContactGrabberPlugin' will fetch your address book from currently only gmail.** == Description == sdfds test == Requirements == * PHP 5 with CURL support (curl.so or php_curl.dll) == Installiation instructions == * Install the plugin {{{ symfony plugin-install http://plugins.symfony-project.com/sfContactGrabberPlugin }}} * Enable the sfContactGrabber module in your application settings.yml {{{ all: .settings: enabled_modules: [default, sfContactGrabber] }}} * Add a writable path for cookies. ( some of the scripts need this, eg: yahoo) So in config/app.yml add the following. {{{ sfContactGrabberPlugin: cookie_path: somewhere/uploads }}} * Clear the cache {{{ symfony cc }}} * Include a link to the form in a view {{{ <?php include_partial('sfContactGrabber/form');?> }}} == Notes == * A level of abstraction is made from the tpl's so they may be eaisly updated in the future as their api's change. Any changes made to them should be listed below. === Changes to third party librarys: === == TODO == * Fix the yahoo support * Add Hotmail, rediff and orkut support. == Troubleshooting == * When CURL is not present, you may get errors like: ''"Warning: dl() [function.dl]: Dynamically loaded extensions aren't enabled in ....."''[[BR]] * The fix is simple... go install CURL. == License == * For the full copyright and license information, please view the LICENSE file that was distributed with this source code. == Changelog == === 2007-07-19 | 0.1 Beta === * (asifali.mohd@gmail.com) Asif.Ali: First version Based from the Contact Grabber library : http://www.phpclasses.org/browse/package/3895.html === 2008-07-20 | 0.2 Beta === * (rekarnar@gmail.com) Adam Tombleson: Major code re-write and compatibility update to the lastest api's. === 2008-10-21 | 0.5 Beta === * (rekarnar@gmail.com) Adam Tombleson: Updated to google contacts api - http://code.google.com/apis/contacts/ Removed failing yahoo support. Changed to a more accurate versioning system.