本文整理匯總了PHP中eZURL::setIsValid方法的典型用法代碼示例。如果您正苦於以下問題:PHP eZURL::setIsValid方法的具體用法?PHP eZURL::setIsValid怎麽用?PHP eZURL::setIsValid使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eZURL
的用法示例。
在下文中一共展示了eZURL::setIsValid方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
$limit = 10;
}
$offset = $Params['Offset'];
if (!is_numeric($offset)) {
$offset = 0;
}
if ($ViewMode != 'all' && $ViewMode != 'invalid' && $ViewMode != 'valid') {
$ViewMode = 'all';
}
if ($Module->isCurrentAction('SetValid')) {
$urlSelection = $Module->actionParameter('URLSelection');
eZURL::setIsValid($urlSelection, true);
} else {
if ($Module->isCurrentAction('SetInvalid')) {
$urlSelection = $Module->actionParameter('URLSelection');
eZURL::setIsValid($urlSelection, false);
}
}
if ($ViewMode == 'all') {
$listParameters = array('is_valid' => null, 'offset' => $offset, 'limit' => $limit, 'only_published' => true);
$countParameters = array('only_published' => true);
} elseif ($ViewMode == 'valid') {
$listParameters = array('is_valid' => true, 'offset' => $offset, 'limit' => $limit, 'only_published' => true);
$countParameters = array('is_valid' => true, 'only_published' => true);
} elseif ($ViewMode == 'invalid') {
$listParameters = array('is_valid' => false, 'offset' => $offset, 'limit' => $limit, 'only_published' => true);
$countParameters = array('is_valid' => false, 'only_published' => true);
}
$list = eZURL::fetchList($listParameters);
$listCount = eZURL::fetchListCount($countParameters);
$viewParameters = array('offset' => $offset, 'limit' => $limit);
示例2: foreach
$translateResult = eZURLAliasML::translate($url);
if (!$translateResult) {
$isInternal = false;
// Check if it is a valid internal link.
foreach ($siteURLs as $siteURL) {
$siteURL = preg_replace("/\\/\$/e", "", $siteURL);
$fp = @fopen($siteURL . "/" . $url, "r");
if (!$fp) {
// do nothing
} else {
$isInternal = true;
fclose($fp);
}
}
$translateResult = $isInternal;
}
if ($translateResult) {
if (!$isValid) {
eZURL::setIsValid($linkID, true);
}
$cli->output($cli->stylize('success', "valid"));
} else {
if ($isValid) {
eZURL::setIsValid($linkID, false);
}
$cli->output($cli->stylize('warning', "invalid"));
}
}
eZURL::setLastChecked($linkID);
}
$cli->output("All links have been checked!");