mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
24 lines
1.3 KiB
PHP
24 lines
1.3 KiB
PHP
![]() |
<?php decorate_with(sfLoader::getTemplatePath('default', 'defaultLayout.php')) ?>
|
||
|
|
||
|
<div class="sfTMessageContainer sfTMessage">
|
||
|
<?php echo image_tag('/sf/sf_default/images/icons/ok48.png', array('alt' => 'module created', 'class' => 'sfTMessageIcon', 'size' => '48x48')) ?>
|
||
|
<div class="sfTMessageWrap">
|
||
|
<h1>Module "<?php echo $sf_params->get('module') ?>" created</h1>
|
||
|
<h5>Congratulations! You have successfully created a symfony module.</h5>
|
||
|
</div>
|
||
|
</div>
|
||
|
<dl class="sfTMessageInfo">
|
||
|
<dt>This is a temporary page</dt>
|
||
|
<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>
|
||
|
|
||
|
<dt>What's next</dt>
|
||
|
<dd>
|
||
|
<ul class="sfTIconList">
|
||
|
<li class="sfTDirectoryMessage">Browse to the <code>apps/<?php echo SF_APP ?>/modules/<?php echo $sf_params->get('module') ?>/</code> directory</li>
|
||
|
<li class="sfTEditMessage">In <code>actions/actions.class.php</code>, edit the <code>executeIndex()</code> method and remove the final <code>forward</code></li>
|
||
|
<li class="sfTColorMessage">Customize the <code>templates/indexSuccess.php</code> template</li>
|
||
|
<li class="sfTLinkMessage"><?php echo link_to('Learn more from the online documentation', 'http://www.symfony-project.com/content/documentation.html') ?></li>
|
||
|
</ul>
|
||
|
</dd>
|
||
|
</dl>
|