web/enmi/Zend/Feed/Builder/Interface.php
changeset 19 1c2f13fd785c
parent 0 4eba9c11703f
equal deleted inserted replaced
18:bd595ad770fc 19:1c2f13fd785c
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * Zend Framework
       
     5  *
       
     6  * LICENSE
       
     7  *
       
     8  * This source file is subject to the new BSD license that is bundled
       
     9  * with this package in the file LICENSE.txt.
       
    10  * It is also available through the world-wide-web at this URL:
       
    11  * http://framework.zend.com/license/new-bsd
       
    12  * If you did not receive a copy of the license and are unable to
       
    13  * obtain it through the world-wide-web, please send an email
       
    14  * to license@zend.com so we can send you a copy immediately.
       
    15  *
       
    16  * @category   Zend
       
    17  * @package    Zend_Feed
       
    18  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    20  * @version    $Id: Interface.php 20096 2010-01-06 02:05:09Z bkarwin $
       
    21  */
       
    22 
       
    23 
       
    24 /**
       
    25  * Input feed data interface
       
    26  *
       
    27  * Classes implementing this interface can be passe to Zend_Feed::importBuilder
       
    28  * as an input data source for the Zend_Feed construction
       
    29  *
       
    30  * @category   Zend
       
    31  * @package    Zend_Feed
       
    32  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
       
    33  * @license    http://framework.zend.com/license/new-bsd     New BSD License
       
    34  */
       
    35 interface Zend_Feed_Builder_Interface
       
    36 {
       
    37     /**
       
    38      * Returns an instance of Zend_Feed_Builder_Header
       
    39      * describing the header of the feed
       
    40      *
       
    41      * @return Zend_Feed_Builder_Header
       
    42      */
       
    43     public function getHeader();
       
    44 
       
    45     /**
       
    46      * Returns an array of Zend_Feed_Builder_Entry instances
       
    47      * describing the entries of the feed
       
    48      *
       
    49      * @return array of Zend_Feed_Builder_Entry
       
    50      */
       
    51     public function getEntries();
       
    52 }