Skip to content

Commit fb24093

Browse files
committed
initial commit
0 parents  commit fb24093

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

js_tests_app_controller.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
class JsTestsAppController extends AppController
4+
{
5+
}

js_tests_app_model.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
class JsTestsAppModel extends AppModel
4+
{
5+
}

views/layouts/default.ctp

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<?php echo $this->Html->charset(); ?>
5+
<title>
6+
<?php __('CakePHP: the rapid development php framework:'); ?>
7+
<?php echo $title_for_layout; ?>
8+
</title>
9+
<?php
10+
echo $this->Html->meta('icon');
11+
12+
echo $this->Html->css('cake.generic');
13+
14+
echo $scripts_for_layout;
15+
?>
16+
</head>
17+
<body>
18+
<div id="container">
19+
<div id="header">
20+
<h1><?php echo $this->Html->link(__('CakePHP JsTests Plugin: unit tests and code coverage for JavaScript in CakePHP', true), 'http://lecterror.com/'); ?></h1>
21+
</div>
22+
<div id="content">
23+
24+
<?php echo $this->Session->flash(); ?>
25+
26+
<?php echo $content_for_layout; ?>
27+
28+
</div>
29+
<div id="footer">
30+
<?php echo $this->Html->link(
31+
$this->Html->image('cake.power.gif', array('alt'=> __('CakePHP: the rapid development php framework', true), 'border' => '0')),
32+
'http://www.cakephp.org/',
33+
array('target' => '_blank', 'escape' => false)
34+
);
35+
?>
36+
</div>
37+
</div>
38+
<?php echo $this->element('sql_dump'); ?>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)