prefetchValueInstance('user'); // Assign fields with template variables $blockInstance->assignField('username'); $blockInstance->assignFieldWithFilter('user_status', "user_status_translator"); // Shall we include registration date? if ($blockInstance->ifIncludeRegistrationStamp()) { // Then assign it as well! $blockInstance->assignFieldWithFilter('registered', 'formatTimestamp'); } // END - if // Flush the content out to a template variable $blockInstance->flushContent(); // Get a new instance for blog data $blockInstance = ObjectFactory::createObjectByConfiguredName('web_block_helper', array($this, 'blog_data')); // Set the data source instance which must exist in registry $blockInstance->prefetchValueInstance('blog'); // Flush the content out to a template variable $blockInstance->flushContent(); // Get helper instance $helper = ObjectFactory::createObjectByConfiguredName('web_link_helper', array($this, 'logout_action_link', 'index.php?app={?app_short_name?}&page=login_area')); // Add action $helper->addActionLink('logout', "Ausloggen"); // Flush the content $helper->flushContent(); // [EOC] ?>
Willkommen im Loginbereich von {?app_full_name?}!
{?login_content?}
Account-Infos:
{?persona_data?}
{?blog_data?}