mirror of
https://github.com/brmlab/brmbiolab_sklad.git
synced 2025-12-16 12:43:58 +01:00
Initial commit
This commit is contained in:
commit
3b93da31de
1004 changed files with 265840 additions and 0 deletions
17
lib/Cake/Test/test_app/View/Layouts/rss/default.ctp
Normal file
17
lib/Cake/Test/test_app/View/Layouts/rss/default.ctp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
echo $this->Rss->header();
|
||||
|
||||
if (!isset($channel)) {
|
||||
$channel = array();
|
||||
}
|
||||
if (!isset($channel['title'])) {
|
||||
$channel['title'] = $this->fetch('title');
|
||||
}
|
||||
|
||||
echo $this->Rss->document(
|
||||
$this->Rss->channel(
|
||||
array(), $channel, $this->fetch('content')
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue