mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Copying missing directories to skel/views/layouts
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5029 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
32cc12553e
commit
aecb9e63f0
3 changed files with 21 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
<?php echo $scripts_for_layout; ?>
|
||||||
|
<script type="text/javascript"><?php echo $content_for_layout; ?></script>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
echo $rss->header();
|
||||||
|
|
||||||
|
if (!isset($channel)) {
|
||||||
|
$channel = array();
|
||||||
|
}
|
||||||
|
if (!isset($channel['title'])) {
|
||||||
|
$channel['title'] = $title_for_layout;
|
||||||
|
}
|
||||||
|
|
||||||
|
echo $rss->document(
|
||||||
|
$rss->channel(
|
||||||
|
array(), $channel, $content_for_layout
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,2 @@
|
||||||
|
<?php e($xml->header()); ?>
|
||||||
|
<?php echo $content_for_layout; ?>
|
Loading…
Reference in a new issue