mirror of
https://github.com/brmlab/brmbiolab_sklad.git
synced 2025-06-09 13:44:00 +02:00
Initial commit
This commit is contained in:
commit
3b93da31de
1004 changed files with 265840 additions and 0 deletions
1
lib/Cake/Test/test_app/View/Emails/html/custom.ctp
Normal file
1
lib/Cake/Test/test_app/View/Emails/html/custom.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
<p>Here is your value: <b><?php echo $value; ?></b></p>
|
7
lib/Cake/Test/test_app/View/Emails/html/default.ctp
Normal file
7
lib/Cake/Test/test_app/View/Emails/html/default.ctp
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
$content = explode("\n", $content);
|
||||
|
||||
foreach ($content as $line):
|
||||
echo '<p> ' . $line . '</p>';
|
||||
endforeach;
|
||||
?>
|
12
lib/Cake/Test/test_app/View/Emails/html/html.ctp
Normal file
12
lib/Cake/Test/test_app/View/Emails/html/html.ctp
Normal file
|
@ -0,0 +1,12 @@
|
|||
<h1>HTML Ipsum Presents</h1><p><strong>Pellentesque habitant morbi tristique</strong> senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, <code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. <a href="#">Donec non enim</a> in turpis pulvinar facilisis. Ut felis.</p><h2>Header Level 2</h2><ol><li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li><li>Aliquam tincidunt mauris eu risus.</li></ol><blockquote><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est.</p></blockquote><h3>Header Level 3</h3><ul><li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li><li>Aliquam tincidunt mauris eu risus.</li></ul>
|
||||
<pre><code>
|
||||
#header h1 a {
|
||||
display: block;
|
||||
width: 300px;
|
||||
height: 80px;
|
||||
}</code></pre>
|
||||
<table>
|
||||
<th align="right" valign="top"
|
||||
style="font-weight: bold">The tag is across multiple lines - <?php echo str_repeat('x', CakeEmail::LINE_LENGTH_MUST); ?></th>
|
||||
</table>
|
||||
<p>Some more <?php echo str_repeat('x', CakeEmail::LINE_LENGTH_MUST); ?> <b>Bold</b> test.</p>
|
8
lib/Cake/Test/test_app/View/Emails/html/image.ctp
Normal file
8
lib/Cake/Test/test_app/View/Emails/html/image.ctp
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
echo $this->Html->image('image.gif', array(
|
||||
'alt' => 'cool image',
|
||||
'width' => 100,
|
||||
'height' => 100,
|
||||
'fullBase' => true,
|
||||
));
|
1
lib/Cake/Test/test_app/View/Emails/html/japanese.ctp
Normal file
1
lib/Cake/Test/test_app/View/Emails/html/japanese.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
<p>ここにあなたの設定した値が入ります: <b><?php echo $value; ?></b></p>
|
|
@ -0,0 +1,3 @@
|
|||
Before the element.
|
||||
<?php echo $this->element('html_call'); ?>
|
||||
After the element.
|
1
lib/Cake/Test/test_app/View/Emails/text/custom.ctp
Normal file
1
lib/Cake/Test/test_app/View/Emails/text/custom.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
Here is your value: <?php echo $value; ?>
|
|
@ -0,0 +1 @@
|
|||
Right now: <?php echo $this->Time->toAtom($time); ?>
|
1
lib/Cake/Test/test_app/View/Emails/text/default.ctp
Normal file
1
lib/Cake/Test/test_app/View/Emails/text/default.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
<?php echo $content; ?>
|
1
lib/Cake/Test/test_app/View/Emails/text/japanese.ctp
Normal file
1
lib/Cake/Test/test_app/View/Emails/text/japanese.ctp
Normal file
|
@ -0,0 +1 @@
|
|||
ここにあなたの設定した値が入ります: <?php echo $value; ?>
|
2
lib/Cake/Test/test_app/View/Emails/text/wide.ctp
Normal file
2
lib/Cake/Test/test_app/View/Emails/text/wide.ctp
Normal file
|
@ -0,0 +1,2 @@
|
|||
This element has some text that is just too wide to comply with email standards.
|
||||
<?php echo $content; ?>
|
Loading…
Add table
Add a link
Reference in a new issue