-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
67 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of OPUS. The software OPUS has been originally developed | ||
* at the University of Stuttgart with funding from the German Research Net, | ||
|
@@ -24,14 +25,10 @@ | |
* along with OPUS; if not, write to the Free Software Foundation, Inc., 51 | ||
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
* | ||
* @category Application | ||
* @package Module_Rss | ||
* @author Sascha Szott <[email protected]> | ||
* @copyright Copyright (c) 2008-2011, OPUS 4 development team | ||
* @copyright Copyright (c) 2008, OPUS 4 development team | ||
* @license http://www.gnu.org/licenses/gpl.html General Public License | ||
*/ | ||
|
||
class Rss_Bootstrap extends \Zend_Application_Module_Bootstrap | ||
class Rss_Bootstrap extends Zend_Application_Module_Bootstrap | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of OPUS. The software OPUS has been originally developed | ||
* at the University of Stuttgart with funding from the German Research Net, | ||
|
@@ -24,20 +25,21 @@ | |
* along with OPUS; if not, write to the Free Software Foundation, Inc., 51 | ||
* Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
* | ||
* @category Application | ||
* @package Module_Rss | ||
* @author Jens Schwidder <[email protected]> | ||
* @copyright Copyright (c) 2008-2016, OPUS 4 development team | ||
* @copyright Copyright (c) 2008, OPUS 4 development team | ||
* @license http://www.gnu.org/licenses/gpl.html General Public License | ||
* | ||
* TODO context spezifische Titel für RSS feed (latest, collections, ...) | ||
*/ | ||
|
||
/** | ||
* TODO context spezifische Titel für RSS feed (latest, collections, ...) | ||
*/ | ||
class Rss_Model_Feed extends Application_Model_Abstract | ||
{ | ||
|
||
/** @var Zend_View_Interface */ | ||
private $view; | ||
|
||
/** | ||
* @param Zend_View_Interface $view | ||
*/ | ||
public function __construct($view) | ||
{ | ||
$this->view = $view; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters