本文整理汇总了PHP中Brand::hasId方法的典型用法代码示例。如果您正苦于以下问题:PHP Brand::hasId方法的具体用法?PHP Brand::hasId怎么用?PHP Brand::hasId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Brand
的用法示例。
在下文中一共展示了Brand::hasId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: brandRedirect
public function brandRedirect()
{
if (empty($_GET['q'])) {
return;
}
$slug = $_GET['q'];
$brand = new Brand();
$brand->withSlug($slug);
if ($brand->hasId()) {
$brand->registerClick();
$this->gaBrandClickRegister($brand);
header('Location: ' . $brand->url);
exit;
}
}
示例2: deleteBrand
public function deleteBrand()
{
$id = null;
if (!empty($_GET['id'])) {
$id = (int) $_GET['id'];
}
$brand = new Brand();
$brand->withId($id);
if ($brand->hasId()) {
$brand->delete();
}
header('Location: ' . $this->getUrl('brands'));
exit;
}
示例3: substr
}
if (substr($queryString, -1) == '/') {
$queryString = substr($queryString, 0, -1);
}
if (empty($queryString)) {
Controller::exec('FindGuidelines', 'index');
} else {
if ($queryString == 'download') {
Controller::exec('FindGuidelines', 'download');
} else {
if ($queryString == 'about') {
Controller::exec('FindGuidelines', 'about');
} else {
if (class_exists('AdministrationController') && $queryString == AdministrationController::DIRECTORY_ADMINISTRATION) {
Controller::exec('administration', 'display');
} else {
$brand = new Brand();
$brand->withSlug($queryString);
if ($brand->hasId()) {
Controller::exec('FindGuidelines', 'brandRedirect');
} else {
Controller::exec('FindGuidelines', 'error404');
}
}
}
}
}
} catch (Exception $e) {
var_dump($e);
echo 'Oups! Something do not work... :(';
}