Ejemplo n.º 1
0
 public function __construct($parentUIObject = null)
 {
     if (OpfConfig::DEBUG_LEVEL > 0) {
         OpfDebugUtil::logOutput(get_class($this));
     }
     // if
     $this->parentUIObject = $parentUIObject;
     $this->responseDivId = OpfConfig::DIV_SHOW_PROGRESS;
 }
Ejemplo n.º 2
0
 public function notificationsSend($uid, $message)
 {
     if (OpfConfig::DEBUG_LEVEL > 0) {
         OpfDebugUtil::logOutput('notificationsSend $uid=' . $uid . ' $message="' . $message . '"');
     }
     // if
     $this->facebook->api_client->notifications_send($uid, $message, 'user_to_user');
 }