Login area - company page now with more stubs
[shipsimu.git] / application / ship-simu / templates / de / code / action_login_company.ctp
index a00b8cc9ec275300641175424afed66eb5fbff1b..2747805349d10adc7857a36fdfb69c8dae972538 100644 (file)
@@ -1,3 +1,40 @@
+<?php
+// Get a link helper instance
+$linkInstance = WebLinkHelper::createWebLinkHelper($this, 'company_links', 'index.php?app=ship-simu&amp;page=login_area');
+
+// Preftech the user data
+$linkInstance->prefetchValueInstance('user');
+
+// Maximum of allowed companies reached?
+if ($linkInstance->getValueInstance()->ifUserCreatedMaximumAllowedCompanies()) {
+       // No more companies allowed to create
+} elseif ($linkInstance->getValueInstance()->ifUserPointsEnougth('found_new_company')) {
+       // Enough money to found company
+} elseif ($linkInstance->getValueInstance()->ifUserPointsEnougth('write_applications')) {
+       // Enough money to write applications to other companies
+} elseif ($linkInstance->getValueInstance()->ifGovermentPaysStartupHelp()) {
+       // Display link to goverment for startup help
+} // END - if
+
+if ($linkInstance->getValueInstance()->ifUserAllowTakeCreditsFromMoneyBank()) {
+       // Display link to money bank page
+} elseif ($linkInstance->getValueInstance()->ifUserHasMaximumCreditsWithMoneyBank()) {
+       // Maximum credits reached which a money bank can lent
+} else {
+       // Money bank is closed!
+}
+
+if ($linkInstance->getValueInstance()->ifRefillPageActive()) {
+       // Display link to refill page
+} else {
+       // Refill page not active
+}
+
+// Flush content to the template
+$linkInstance->flushContent();
+
+// End of PHP commands
+?>
 <div class="table_header" id="list_company_header">
        Auflistung der Reedereien, an denenen du dich beteiligst:
 </div>
@@ -7,7 +44,5 @@
 </div>
 
 <div class="table_footer">
-       [<a href="$config[base_url]/index.php?app=ship-simu&amp;page=login_area&amp;action=new_company" title="Hier kannst du mit ausreichend Guthaben eine neue Reederei gr&uuml;nden.">Neue Reederei gr&uuml;nden</a>]&nbsp;-
-       [<a href="$config[base_url]/index.php?app=ship-simu&amp;page=login_area&amp;action=list_companies" title="Wenn du dich bei einer Reederei bewerben willst, versuche mal hier dein Gl&uuml;ck.">Reedereien auflisten</a>]&nbsp;-
-       [<a href="$config[base_url]/index.php?app=ship-simu&amp;page=login_area&amp;action=search_companies" title="Suche hier direkt nach einer Reederei anhand des Namens oder Firmenk&uuml;rzels.">Reederei suchen</a>]
+       {?company_links?}
 </div>