DrupalBin
Submit Code
About
Recent Posts
Code
1 hour 48 min
ago
Fix for my user handler
2 hours 10 min
ago
Fix for my user handler
2 hours 14 min
ago
my user handler
4 hours 2 min
ago
more
Tags
CCK
fapi
javascript
jquery
menu
module
Panels
simpletest
template.php
test
theme
views
more tags
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Create new account
Request new password
Log in using OpenID
Cancel OpenID login
Home
flickr
Fix for image_ncck_flickr_extract
July 2, 2008 - 1:28pm — Anonymous
function
image_ncck_flickr_extract
(
$embed
=
''
)
{
// http://flickr.com/photos/96898796@N00/194727976/
return
array
(
'@flickr
\.
com/photos/[^/]*/(
\d
*)@i'
)
;
}
Embedded Media Field
flickr
Fix for image_ncck_flickr_extract
July 2, 2008 - 1:26pm — Anonymous
function
image_ncck_flickr_extract
(
$embed
=
''
)
{
// http://flickr.com/photos/96898796@N00/194727976/
preg_match
(
'@flickr
\.
com/photos/[^/]*/(
\d
*)@i'
,
$embed
,
$matches
)
;
Embedded Media Field
flickr
Read more
image_ncck_flickr_extract
July 2, 2008 - 1:24pm — Anonymous
function
image_ncck_flickr_extract
(
$embed
=
''
)
{
// http://flickr.com/photos/96898796@N00/194727976/
if
(
preg_match
(
'@flickr
\.
com/photos/([^/]*)/([^/]*)/@i'
,
$embed
,
$matches
)
)
{
Embedded Media Field
flickr
Read more
Some code to search flickr for images
July 2, 2008 - 10:18am — Anonymous
function
_optotrip_block_flickr
(
)
{
$termtext
= _optotrip_get_block_context
(
)
;
if
(
$termtext
==
''
)
{
return
NULL
;
}
$starttime
=
microtime
(
TRUE
)
;
lightbox2_add_files
(
)
;
block
drupal
flickr
Read more