abeacc7c718d0c3d56669d10aa68890221141c72
[shipsimu.git] / application / todo / templates / de / code / login_main.ctp
1 <?php
2 ///////////////////////////////
3 // Assign personal user data //
4 ///////////////////////////////
5
6 // Get a new instance for personal data
7 $blockInstance = ObjectFactory::createObjectByConfiguredName('web_block_helper', array($this, 'persona_data'));
8
9 // Set the data source instance which must exist in registry
10 $blockInstance->prefetchValueInstance('user');
11
12 // Assign fields with template variables
13 $blockInstance->assignField('username');
14 $blockInstance->assignFieldWithFilter('user_status', "user_status_translator");
15
16 // Shall we include registration date?
17 if ($blockInstance->ifIncludeRegistrationStamp()) {
18         // Then assign it as well!
19         $blockInstance->assignFieldWithFilter('registered', 'formatTimestamp');
20 } // END - if
21
22 // Flush the content out to a template variable
23 $blockInstance->flushContent();
24
25 // Get helper instance
26 $helper = ObjectFactory::createObjectByConfiguredName('web_link_helper', array($this, 'logout_action_link', 'index.php?app={?app_short_name?}&amp;page=login_area'));
27
28 // Add action
29 $helper->addActionLink('logout', "Ausloggen");
30
31 // Flush the content
32 $helper->flushContent();
33
34 // [EOC]
35 ?>
36 <div id="content_header">
37         Willkommen im Loginbereich  von <span class=\"app_name\">{?app_full_name?}</span>!
38 </div>
39
40 <div id="content_body">
41         {?login_content?}
42 </div>
43
44 <div id="persona_data" title="Informationen zu Deinem Loginaccount">
45         <div id="persona_header">
46                 Account-Infos:
47         </div>
48
49         <div id="persona_body">
50                 {?persona_data?}
51         </div>
52
53         <div id="logout_link">
54                 {?logout_action_link?}
55         </div>
56 </div>