Exemple #1
0
 /**
  * A guest trying to use registered-only part of the system via ajax. Display
  * a link to register
  */
 public function ajaxBlockUnregister()
 {
     $objResponse = new JAXResponse();
     $uri = CFactory::getLastURI();
     $uri = base64_encode($uri);
     $config = CFactory::getConfig();
     $usersConfig = JComponentHelper::getParams('com_users');
     $fbHtml = '';
     if ($config->get('fbconnectkey') && $config->get('fbconnectsecret') && !$config->get('usejfbc')) {
         $facebook = new CFacebook();
         $fbHtml = $facebook->getLoginHTML();
     }
     if ($config->get('usejfbc')) {
         if (class_exists('JFBCFactory')) {
             $providers = JFBCFactory::getAllProviders();
             $fbHtml = '';
             foreach ($providers as $p) {
                 $fbHtml .= $p->loginButton();
             }
         }
     }
     $tmpl = new CTemplate();
     $tmpl->set('fbHtml', $fbHtml);
     $tmpl->set('useractivation', $usersConfig->get('useractivation'));
     $tmpl->set('allowUserRegister', $usersConfig->get('allowUserRegistration'));
     $tmpl->set('useractivation', $usersConfig->get('useractivation'));
     $tmpl->set('return', $uri);
     $html = $tmpl->fetch('ajax.login');
     $json = array('title' => ' ', 'html' => $html, 'noLogin' => true);
     die(json_encode($json));
 }
Exemple #2
0
 /**
  * restrict blocked user to access owner details
  */
 public function ajaxBlockMessage()
 {
     $objResponse = new JAXResponse();
     $uri = CFactory::getLastURI();
     $uri = base64_encode($uri);
     $config = CFactory::getConfig();
     $tmpl = new CTemplate();
     $html = $tmpl->set('uri', $uri)->set('config', $config)->fetch('block.denied');
     $objResponse->addScriptCall('cWindowAddContent', $html);
     return $objResponse->sendResponse();
 }
Exemple #3
0
 /**
  * restrict blocked user to access owner details
  */
 public function ajaxBlock()
 {
     $objResponse = new JAXResponse();
     $uri = CFactory::getLastURI();
     $uri = base64_encode($uri);
     $config = CFactory::getConfig();
     $tmpl = new CTemplate();
     $tmpl->set('uri', $uri);
     $tmpl->set('config', $config);
     $html = $tmpl->fetch('block.denied');
     $objResponse->addAssign('cWindowContent', 'innerHTML', $html);
     $objResponse->addScriptCall('cWindowResize', 260);
     return $objResponse->sendResponse();
 }