<?php
/**
* Community Essentials
*
* immer benötigte Sachen innerhalb der Community zum Beispiel
* das Community Optionen Objekt
*
* @version $Id: essentials.inc.php,v 1.3 2004/03/11 16:13:22 cb_fog Exp $
* @copyright 2003 C*B Development Group
**/
$communityOption = new CBOption();
$communityOption->setModule("community");
$communityOption->getOptionList();
if(!$community_check) {
$tpl->assign("community_logged_in", "0");
} else {
$_SESSION[openfolder] = $openfolder;
$tpl->assign("community_logged_in", "1");
$tpl->assign("community_data", $_SESSION[community_data]);
$tpl->assign("community_name", $_SESSION[community_name]);
$tpl->assign("community_uid", $_SESSION[community_uid]);
}?>