All times are UTC + 5:30 hours




Post new topic Reply to topic  [ 3 posts ] 
  Print view

vimeo shortcode
Author Message
PostPosted: Tue Apr 24, 2012 3:16 pm 
Registered User
Offline

Joined: Tue Apr 24, 2012 2:26 pm
Posts: 2
I'm working with couch for 2 days and i like it verry much! The youtube shortcode works good now.
Does someone already made ​​a short code for vimeo videos?
I am very interested!

(sorry for my bad English)


Top
 Profile  
 

Re: vimeo shortcode
PostPosted: Tue Apr 24, 2012 7:14 pm 
Moderator
Online

Joined: Wed Dec 01, 2010 5:35 pm
Posts: 1453
Hi pimb and welcome :)

Try this as shortcode for vimeo
Code:
     // Usage: [vimeo 40613192]
   $FUNCS->register_shortcode( 'vimeo', 'vimeo_handler' );
   function vimeo_handler( $params, $content=null ){
      global $FUNCS;
     
      extract( $FUNCS->get_named_vars(array(
         'id'=>'',
         'width' => '475',
         'height' => '350',
      ), $params) );

      // Sanitize parameters
      $id = htmlspecialchars( $id, ENT_QUOTES );
      $width = (int)$width;
      $height = (int)$height;
     
      // Output HTML
      $html =<<<EOS
      <iframe src="http://player.vimeo.com/video/$id?byline=0&amp;portrait=0&amp;badge=0" width="$width" height="$height" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
EOS;
      return $html;
   }

Hope this helps. Let us know.

Note: (May 10, 3013) Revised the code to output the currently used markup for Vimeo videos, as suggested by @cheesypoof.


Top
 Profile  
 

Re: vimeo shortcode
PostPosted: Wed Apr 25, 2012 1:45 pm 
Registered User
Offline

Joined: Tue Apr 24, 2012 2:26 pm
Posts: 2
It works perfect. Thank you very much!!


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC + 5:30 hours


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
© 2001-2010 SYS-Solutions All Rights Reserved