| 1 |
lars |
1 |
<?php decorate_with(dirname(__FILE__).'/defaultLayout.php') ?>
|
|
|
2 |
|
|
|
3 |
<div class="sfTMessageContainer sfTMessage">
|
|
|
4 |
<?php echo image_tag('/sf/sf_default/images/icons/ok48.png', array('alt' => 'module created', 'class' => 'sfTMessageIcon', 'size' => '48x48')) ?>
|
|
|
5 |
<div class="sfTMessageWrap">
|
|
|
6 |
<h1>Module "<?php echo $sf_params->get('module') ?>" created</h1>
|
|
|
7 |
<h5>Congratulations! You have successfully created a symfony module.</h5>
|
|
|
8 |
</div>
|
|
|
9 |
</div>
|
|
|
10 |
<dl class="sfTMessageInfo">
|
|
|
11 |
<dt>This is a temporary page</dt>
|
|
|
12 |
<dd>This page is part of the symfony <code>default</code> module. It will disappear as soon as you override the <code>index</code> action in the new module.</dd>
|
|
|
13 |
|
|
|
14 |
<dt>What's next</dt>
|
|
|
15 |
<dd>
|
|
|
16 |
<ul class="sfTIconList">
|
|
|
17 |
<li class="sfTDirectoryMessage">Browse to the <code>apps/<?php echo sfContext::getInstance()->getConfiguration()->getApplication() ?>/modules/<?php echo $sf_params->get('module') ?>/</code> directory</li>
|
|
|
18 |
<li class="sfTEditMessage">In <code>actions/actions.class.php</code>, edit the <code>executeIndex()</code> method and remove the final <code>forward</code></li>
|
|
|
19 |
<li class="sfTColorMessage">Customize the <code>templates/indexSuccess.php</code> template</li>
|
|
|
20 |
<li class="sfTLinkMessage"><?php echo link_to('Learn more from the online documentation', 'http://www.symfony-project.org/doc') ?></li>
|
|
|
21 |
</ul>
|
|
|
22 |
</dd>
|
|
|
23 |
</dl>
|