dibudeco

CROWDWERK-Login

CROWDWERK Login

DiBuDeCo stands for Distributed Business Design Collaboration and is a project of Hochschule Luzern. Please find more Information here.

{source}
<?php
$session =& JFactory::getSession();
if ( !$session->has('community') ) {
$session->set('community', 'dibudeco');
echo '<!-- Session attribute set! ' . date('H:i:s') . ' -->';
} else {
echo '<!-- Session attribute already set to:  ' . $session->get('community') . ' (' . date('H:i:s') . ') -->';
}
?>
{/source}