Example #1
0
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
Example #2
0
 private function __construct()
 {
     $this->activityLogDto = PROFILEPROGRESSBAR_BOL_ActivityLogDao::getInstance();
 }
Example #3
0
 public function deleteFeature()
 {
     PROFILEPROGRESSBAR_BOL_ActivityLogDao::getInstance()->deleteCompletedFeatures();
 }
Example #4
0
function profile_progressbar_event_on_delete_event(OW_Event $event)
{
    $params = $event->getParams();
    PROFILEPROGRESSBAR_BOL_ActivityLogDao::getInstance()->deleteCompletedEventLog(OW::getUser()->getId(), $params['eventId']);
}