You are here

public function PicasaSlideshows::instructions in Video Filter 8

Get Video Filter coded usage instructions.

Overrides VideoFilterBase::instructions

File

src/Plugin/VideoFilter/PicasaSlideshows.php, line 25

Class

PicasaSlideshows
Provides PicasaSlideshows codec for Video Filter.

Namespace

Drupal\video_filter\Plugin\VideoFilter

Code

public function instructions() {
  return $this
    ->t('You must use the URL of the RSS feed for the <strong>Picasa album</strong>:') . '<ol>
      <li>' . $this
    ->t('View the album in Picasa (you should see thumbnails, not a slideshow).') . '</li>
      <li>' . $this
    ->t('Find the "RSS" link and click it.') . '</li>
      <li>' . $this
    ->t('Copy the resulting URL from the browser address bar.  Example:') . '<br />
      <code>[video: http://picasaweb.google.com/data/feed/base/user/USER_NAME/albumid/5568104935784209834?alt=rss&amp;kind=photo&amp;hl=en_US]</code>
      </li>
      </ol>';
}