mirror of
https://github.com/brmlab/brmbiolab_sklad.git
synced 2025-06-14 16:03:37 +02:00
Initial commit
This commit is contained in:
commit
3b93da31de
1004 changed files with 265840 additions and 0 deletions
13
lib/Cake/Test/test_app/View/Layouts/Emails/html/default.ctp
Normal file
13
lib/Cake/Test/test_app/View/Layouts/Emails/html/default.ctp
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo $this->fetch('title'); ?></title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
<p>This email was sent using the <a href="http://cakephp.org">CakePHP Framework</a></p>
|
||||
</body>
|
||||
</html>
|
13
lib/Cake/Test/test_app/View/Layouts/Emails/html/japanese.ctp
Normal file
13
lib/Cake/Test/test_app/View/Layouts/Emails/html/japanese.ctp
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo $this->fetch('title'); ?></title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
<p>このメールは <a href="http://cakephp.org">CakePHP Framework</a> を利用して送信しました。</p>
|
||||
</body>
|
||||
</html>
|
13
lib/Cake/Test/test_app/View/Layouts/Emails/html/thin.ctp
Normal file
13
lib/Cake/Test/test_app/View/Layouts/Emails/html/thin.ctp
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo $this->fetch('title'); ?></title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
<p>This email was sent using the CakePHP Framework</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
This email was sent using the CakePHP Framework, http://cakephp.org.
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
CakePHP Framework を使って送信したメールです。 http://cakephp.org.
|
1
lib/Cake/Test/test_app/View/Layouts/ajax.ctp
Normal file
1
lib/Cake/Test/test_app/View/Layouts/ajax.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
<?php echo $this->fetch('content'); ?>
|
2
lib/Cake/Test/test_app/View/Layouts/ajax2.ctp
Normal file
2
lib/Cake/Test/test_app/View/Layouts/ajax2.ctp
Normal file
|
@ -0,0 +1,2 @@
|
|||
Ajax!
|
||||
<?php echo $this->fetch('content'); ?>
|
5
lib/Cake/Test/test_app/View/Layouts/banana.ctp
Normal file
5
lib/Cake/Test/test_app/View/Layouts/banana.ctp
Normal file
|
@ -0,0 +1,5 @@
|
|||
<body>
|
||||
<?php
|
||||
echo $this->Banana->peel();
|
||||
?>
|
||||
</body>
|
13
lib/Cake/Test/test_app/View/Layouts/cache_empty_sections.ctp
Normal file
13
lib/Cake/Test/test_app/View/Layouts/cache_empty_sections.ctp
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title><?php echo $this->fetch('title'); ?></title>
|
||||
<!--nocache--><?php $x = 1; ?><!--/nocache-->
|
||||
</head>
|
||||
<body>
|
||||
<!--nocache--><?php $x++; ?><!--/nocache-->
|
||||
<!--nocache--><?php $x++; ?><!--/nocache-->
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
<!--nocache--><?php echo 'cached count is: ' . $x; ?><!--/nocache-->
|
||||
</body>
|
||||
</html>
|
13
lib/Cake/Test/test_app/View/Layouts/cache_layout.ctp
Normal file
13
lib/Cake/Test/test_app/View/Layouts/cache_layout.ctp
Normal file
|
@ -0,0 +1,13 @@
|
|||
<p>This is regular text</p>
|
||||
<!--nocache-->
|
||||
<?php echo microtime(); ?>
|
||||
<!--/nocache-->
|
||||
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
<?php echo $superman; ?>
|
||||
|
||||
<!--nocache-->
|
||||
<?php echo $variable; ?>
|
||||
<!--/nocache-->
|
||||
<p>Additional regular text.</p>
|
43
lib/Cake/Test/test_app/View/Layouts/default.ctp
Normal file
43
lib/Cake/Test/test_app/View/Layouts/default.ctp
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
|
||||
$this->loadHelper('Html');
|
||||
|
||||
$cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework');
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<?php echo $this->Html->charset(); ?>
|
||||
<title>
|
||||
<?php echo $cakeDescription ?>:
|
||||
<?php echo $this->fetch('title'); ?>
|
||||
</title>
|
||||
<?php
|
||||
echo $this->Html->meta('icon');
|
||||
|
||||
echo $this->Html->css('cake.generic');
|
||||
|
||||
echo $scripts_for_layout;
|
||||
?>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="header">
|
||||
<h1><?php echo $this->Html->link($cakeDescription, 'http://cakephp.org'); ?></h1>
|
||||
</div>
|
||||
<div id="content">
|
||||
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
<?php echo $this->Html->link(
|
||||
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
||||
'http://www.cakephp.org/',
|
||||
array('target' => '_blank', 'escape' => false)
|
||||
);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
19
lib/Cake/Test/test_app/View/Layouts/flash.ctp
Normal file
19
lib/Cake/Test/test_app/View/Layouts/flash.ctp
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title><?php echo $page_title?></title>
|
||||
<?php echo $this->Html->charset(); ?>
|
||||
|
||||
<?php if (!Configure::read('debug')) { ?>
|
||||
<meta http-equiv="Refresh" content="<?php echo $pause?>;url=<?php echo $url?>"/>
|
||||
<?php } ?>
|
||||
<style><!--
|
||||
P { text-align:center; font:bold 1.1em sans-serif }
|
||||
A { color:#444; text-decoration:none }
|
||||
A:HOVER { text-decoration: underline; color:#44E }
|
||||
--></style>
|
||||
</head>
|
||||
<body>
|
||||
<p><a href="<?php echo $url?>"><?php echo $message?></a></p>
|
||||
</body>
|
||||
</html>
|
2
lib/Cake/Test/test_app/View/Layouts/js/default.ctp
Normal file
2
lib/Cake/Test/test_app/View/Layouts/js/default.ctp
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php echo $scripts_for_layout; ?>
|
||||
<script type="text/javascript"><?php echo $this->fetch('content'); ?></script>
|
1
lib/Cake/Test/test_app/View/Layouts/json/default.ctp
Normal file
1
lib/Cake/Test/test_app/View/Layouts/json/default.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
<?php echo $this->fetch('content'); ?>
|
21
lib/Cake/Test/test_app/View/Layouts/multi_cache.ctp
Normal file
21
lib/Cake/Test/test_app/View/Layouts/multi_cache.ctp
Normal file
|
@ -0,0 +1,21 @@
|
|||
<p>This is regular text</p>
|
||||
<!--nocache-->
|
||||
<p>A. Layout Before Content</p>
|
||||
<?php $this->log('1. layout before content') ?>
|
||||
<!--/nocache-->
|
||||
<!--nocache--><?php echo $this->element('nocache/plain'); ?><!--/nocache-->
|
||||
<!--nocache-->
|
||||
<p>C. Layout After Test Element But Before Content</p>
|
||||
<?php $this->log('3. layout after test element but before content') ?>
|
||||
<!--/nocache-->
|
||||
<?php echo $this->fetch('content'); ?>
|
||||
<!--nocache-->
|
||||
<p>E. Layout After Content</p>
|
||||
<?php $this->log('5. layout after content') ?>
|
||||
<!--/nocache-->
|
||||
<p>Additional regular text.</p>
|
||||
<?php echo $this->element('nocache/contains_nocache'); ?>
|
||||
<!--nocache-->
|
||||
<p>G. Layout After Content And After Element With No Cache Tags</p>
|
||||
<?php $this->log('7. layout after content and after element with no cache tags') ?>
|
||||
<!--/nocache-->
|
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')
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
2
lib/Cake/Test/test_app/View/Layouts/xml/default.ctp
Normal file
2
lib/Cake/Test/test_app/View/Layouts/xml/default.ctp
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php echo '<?xml version="1.0" encoding="' . Configure::read('App.encoding') . '"?>'; ?>
|
||||
<?php echo $this->fetch('content'); ?>
|
Loading…
Add table
Add a link
Reference in a new issue