当前位置: 首页>>代码示例>>PHP>>正文


PHP Brand::hasId方法代码示例

本文整理汇总了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;
     }
 }
开发者ID:Aqro,项目名称:findguidelines,代码行数:15,代码来源:FindGuidelinesController.php

示例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;
 }
开发者ID:Aqro,项目名称:findguidelines,代码行数:14,代码来源:AdministrationController.php

示例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... :(';
}
开发者ID:Aqro,项目名称:findguidelines,代码行数:31,代码来源:index.php


注:本文中的Brand::hasId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。