14 * to license@zend.com so we can send you a copy immediately. |
14 * to license@zend.com so we can send you a copy immediately. |
15 * |
15 * |
16 * @category Zend |
16 * @category Zend |
17 * @package Zend_Gdata |
17 * @package Zend_Gdata |
18 * @subpackage Gbase |
18 * @subpackage Gbase |
19 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
20 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @license http://framework.zend.com/license/new-bsd New BSD License |
21 * @version $Id: SnippetFeed.php 20096 2010-01-06 02:05:09Z bkarwin $ |
21 * @version $Id: SnippetFeed.php 24777 2012-05-08 18:50:23Z adamlundrigan $ |
22 */ |
22 */ |
23 |
23 |
24 /** |
24 /** |
25 * @see Zend_Gdata_Gbase_Feed |
25 * @see Zend_Exception |
26 */ |
26 */ |
27 require_once 'Zend/Gdata/Gbase/Feed.php'; |
27 require_once 'Zend/Exception.php'; |
|
28 |
|
29 /** |
|
30 * @see Zend_Gdata_Feed |
|
31 */ |
|
32 require_once 'Zend/Gdata/Feed.php'; |
28 |
33 |
29 /** |
34 /** |
30 * Represents the Google Base Snippets Feed |
35 * Represents the Google Base Snippets Feed |
31 * |
36 * |
32 * @link http://code.google.com/apis/base/ |
37 * @link http://code.google.com/apis/base/ |
33 * |
38 * |
34 * @category Zend |
39 * @category Zend |
35 * @package Zend_Gdata |
40 * @package Zend_Gdata |
36 * @subpackage Gbase |
41 * @subpackage Gbase |
37 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
42 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
38 * @license http://framework.zend.com/license/new-bsd New BSD License |
43 * @license http://framework.zend.com/license/new-bsd New BSD License |
39 */ |
44 */ |
40 class Zend_Gdata_Gbase_SnippetFeed extends Zend_Gdata_Feed |
45 class Zend_Gdata_Gbase_SnippetFeed extends Zend_Gdata_Feed |
41 { |
46 { |
42 /** |
|
43 * The classname for individual snippet feed elements. |
|
44 * |
|
45 * @var string |
|
46 */ |
|
47 protected $_entryClassName = 'Zend_Gdata_Gbase_SnippetEntry'; |
|
48 } |
47 } |