]> git.mxchange.org Git - city.git/blob - application/city/templates/code/logout_done.ctp
Continued:
[city.git] / application / city / templates / code / logout_done.ctp
1 <?php
2 // Import framework stuff
3 use Org\Mxchange\CoreFramework\Factory\Object\ObjectFactory;
4
5 // Get helper instance
6 $helperInstance = ObjectFactory::createObjectByConfiguredName('html_link_helper_class', array($this, 'relogin'));
7
8 // Set link text
9 $helperInstance->addLinkWithTextById('relogin');
10
11 // Flush the content
12 $helperInstance->flushContent();
13
14 // [EOC]
15 ?>
16 <div id="content_header">
17         Du bist jetzt aus dem Spiel ausgeloggt!
18 </div>
19
20 <div id="content_body">
21         Du kannst dich nun {?relogin?} oder weiter auf unseren Seiten bleiben. ;-)
22 </div>