flickr

Fix for image_ncck_flickr_extract

  1. function image_ncck_flickr_extract($embed = '') {
  2.   // http://flickr.com/photos/96898796@N00/194727976/
  3.   return array('@flickr\.com/photos/[^/]*/(\d*)@i');
  4. }

Fix for image_ncck_flickr_extract

  1. function image_ncck_flickr_extract($embed = '') {
  2.   // http://flickr.com/photos/96898796@N00/194727976/
  3.   preg_match('@flickr\.com/photos/[^/]*/(\d*)@i', $embed, $matches);
  4.  

image_ncck_flickr_extract

  1. function image_ncck_flickr_extract($embed = '') {
  2.   // http://flickr.com/photos/96898796@N00/194727976/
  3.   if (preg_match('@flickr\.com/photos/([^/]*)/([^/]*)/@i', $embed, $matches)) {

Some code to search flickr for images

  1. function _optotrip_block_flickr() {
  2.   $termtext = _optotrip_get_block_context();
  3.   if ($termtext == '') {
  4.     return NULL;
  5.   }
  6.  
  7.   $starttime = microtime(TRUE);
  8.  
  9.   lightbox2_add_files();
Syndicate content