Services_Yahoo_JP
[ class tree: Services_Yahoo_JP ] [ index: Services_Yahoo_JP ] [ all elements ]

Source for file video.php

Documentation is available at video.php

  1. <?php
  2. /**
  3.  * Video search class
  4.  *
  5.  * PHP version 5
  6.  *
  7.  * LICENSE: This source file is subject to the New BSD license that is
  8.  * available through the world-wide-web at the following URI:
  9.  * http://www.opensource.org/licenses/bsd-license.php. If you did not receive
  10.  * a copy of the New BSD License and are unable to obtain it through the web,
  11.  * please send a note to license@php.net so we can mail you a copy immediately.
  12.  *
  13.  * @category  Services
  14.  * @package   Services_Yahoo_JP
  15.  * @author    Tetsuya Nakase <phpizer@gmail.com>
  16.  * @copyright 2008 Tetsuya Nakase
  17.  * @license   http://www.opensource.org/licenses/bsd-license.php BSD
  18.  * @version   CVS: $Id: video.php,v 1.1 2008/04/28 15:59:31 tetsuya Exp $
  19.  * @link      http://phpize.net
  20.  */
  21. require_once 'Services/Yahoo/Search/video.php';
  22.  
  23. /**
  24.  * Video search class
  25.  *
  26.  * This class implements an interface to Yahoo's video search by using
  27.  * the Yahoo API.
  28.  *
  29.  * @category  Services
  30.  * @package   Services_Yahoo_JP
  31.  * @author    Tetsuya Nakase <phpizer@gmail.com>
  32.  * @copyright 2008 Tetsuya Nakase
  33.  * @license   http://www.opensource.org/licenses/bsd-license.php BSD
  34.  * @version   Release: 0.0.1
  35.  * @link      http://phpize.net
  36.  */
  37.         extends Services_Yahoo_Search_video
  38. {
  39.     /**
  40.      * api url
  41.      *
  42.      * @access protected
  43.      * @var    string 
  44.      */
  45.     protected $requestURL_JP =
  46.         'http://search.yahooapis.jp/VideoSearchService/V1/videoSearch';
  47.  
  48.     /**
  49.      * Constructor to set a api url
  50.      */
  51.     public function __construct()
  52.     {
  53.         $this->requestURL $this->requestURL_JP;
  54.     }
  55. }
  56. ?>

Documentation generated on Fri, 19 Sep 2008 21:30:08 -0400 by phpDocumentor 1.4.0. PEAR Logo Copyright © PHP Group 2004.