<slide title="CakePHP 1.2.0rc2">

<break lines="1" />

<example fontsize="1.4em" title="Controller"><![CDATA[<?php
class HelloController extends AppController {
    var $layout = null;
    var $autoLayout = false;
    var $uses = array();
    var $helpers = array();
    function index()
    {
      $this->pageTitle = 'Test';
      $this->viewVars['body'] = 'Hello World';
    }
}
?>]]></example>

<example fontsize="1.4em" title="View"><![CDATA[<html>
<head>
<title><?php echo $this->pageTitle?></title>
</head>
<body>
<?php echo $this->viewVars['body'] ?>
</body>
</html>]]></example>

<example fontsize="1.4em" type="shell" title="Performance"><![CDATA[
Response time:		        0.19 secs
Transaction rate:	       25.88 trans/sec
]]></example>

<break lines="1" />
<image filename="cake.png" width="1000" align="center" />
<break lines="1" />
<image filename="cake_c.png" width="1000" align="center" />
</slide>
