Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Feed / Writer / Extension / RendererInterface.php
blob032313d6fd3f84ed85d599b302ac46506afbe296
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Feed\Writer\Extension;
12 use DOMDocument;
13 use DOMElement;
15 /**
17 interface RendererInterface
19 /**
20 * Set the data container
22 * @param mixed $container
23 * @return void
25 public function setDataContainer($container);
27 /**
28 * Retrieve container
30 * @return mixed
32 public function getDataContainer();
34 /**
35 * Set DOMDocument and DOMElement on which to operate
37 * @param DOMDocument $dom
38 * @param DOMElement $base
39 * @return void
41 public function setDomDocument(DOMDocument $dom, DOMElement $base);
43 /**
44 * Render
46 * @return void
48 public function render();