本文整理汇总了PHP中CFactory::getLastURI方法的典型用法代码示例。如果您正苦于以下问题:PHP CFactory::getLastURI方法的具体用法?PHP CFactory::getLastURI怎么用?PHP CFactory::getLastURI使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CFactory
的用法示例。
在下文中一共展示了CFactory::getLastURI方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ajaxBlockUnregister
/**
* 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));
}
示例2: ajaxBlockMessage
/**
* 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();
}
示例3: ajaxBlock
/**
* 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();
}