承接 tasmaniski/zend-current-route 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tasmaniski/zend-current-route

最新稳定版本:3.0.2

Composer 安装命令:

composer require tasmaniski/zend-current-route

包简介

View Helper for reading current route info: Controller, Action, Module name

README 文档

README

Licence PHP version

IMPORTANT NOTE: 
If you find this package useful, 
please click on a star button and let me know, 
so I will gladly continue with the updates.

Laminas MVC - Current Route Helper

View Helper for reading Controller, Module, Action and Route name in any view(.phtml) file including layout.phtml

Install

Add in you composer.json file:

{
    "require": {
        "tasmaniski/laminas-current-route": "^3.0"
    }
}

After running: composer update

You need to register new module. Add in file config/application.config.php:

'modules' => array(
    '...',
    'CurrentRoute'
),

Use

Use this view helper in your view files(.html) including layout.phtml

// get current route info
$this->currentRoute()->getController();               // return current controller name
$this->currentRoute()->getAction();                   // return current action name
$this->currentRoute()->getModule();                   // return current module name
$this->currentRoute()->getRoute();                    // return current route name

// or simply check with current info
$this->currentRoute()->matchController('index');      // match "index" with current controller name
$this->currentRoute()->matchAction('index');          // match "index" with current action name
$this->currentRoute()->matchModule('application');    // match "application" with current module name
$this->currentRoute()->matchRoute('home');            // match "home" with current route name

Real world example

<?php $css_class = $this->currentRoute()->matchModule('admin') ? 'selected' : ''; ?>
<a href="/admin" class="<?php echo $css_class;?>">
    Admin link
</a>

统计信息

  • 总下载量: 9.07k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 22
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 22
  • Watchers: 3
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-10-12