getting cakephp set up with its own web server(s) and docroot

This commit is contained in:
Dan Buch
2011-01-02 23:58:42 -05:00
parent aaa61a737b
commit 4b0cfa88e7
756 changed files with 2844 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
<h2>Cache Me</h2>
<cake:nocache>
<p>F. In Element With No Cache Tags</p>
<?php $this->log('6. In element with no cache tags') ?>
</cake:nocache>

View File

@@ -0,0 +1,4 @@
<h2>Cache Me</h2>
<p>B. In Plain Element</p>
<?php $this->log('2. in plain element') ?>

View File

@@ -0,0 +1,8 @@
<?php echo $this->element('nocache/sub2'); ?>
<cake:nocache>
<?php $foobar = 'in sub1'; ?>
<?php echo $foobar; ?>
</cake:nocache>
<?php echo 'printing: "' . $foobar . '"'; ?>

View File

@@ -0,0 +1,6 @@
<cake:nocache>
<?php $barfoo = 'in sub2'; ?>
<?php echo $barfoo; ?>
</cake:nocache>
<?php echo 'printing: "' . $barfoo . '"'; ?>