Hello,
after a time searching I am unable to display the calendar as a widget / block. I have created the following Service wich will be displayed as a block:
function servicePersonalCalendar ($iYear = '', $iMonth = '')
{
//die($this->_aModule['class_prefix']);
bx_import ('Calendar', $this->_aModule);
$oCalendar = bx_instance ($this->_aModule['class_prefix'] . 'Calendar', array ($iYear, $iMonth, $this->_oDb, $this->_oTemplate, $this->_oConfig));
echo $oCalendar->display();
}
The above Code will display only the Full-Page Calendar, how I can display the small Calendar?
Thank you