定制 bazo/nette-features-extension 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

bazo/nette-features-extension

Composer 安装命令:

composer require bazo/nette-features-extension

包简介

Feature toggler extension for Nette Framewrok

README 文档

README

Feature toggling library for php

usage:

register extension

extensions:
	features: Bazo\FeatureToggler\DI\FeaturesExtension

configure features, for more information see https://github.com/bazo/feature-toggler#feature-toggler

features:
	features:
		globals:
			ip: %remoteIp%
		analytics:
			conditions:
				- {ip, in, %remoteIps%}
		zopim:
			conditions:
				- {ip, in, %remoteIps%}
		facebook-like:
			conditions:
				- {ip, in, %remoteIps%}
		login:
			conditions:
				- {ip, in, %allowedIps%}
		registration:
			conditions:
				- {ip, in, %allowedIps%}
		membership:
			active: FALSE

in latte you can use macros:

{ifEnabled feature $context} or {ifEnabled feature [username => bazo]}
feature is enabled
{else}
not enabled
{/ifEnabled}

or n-macros:

<div n:ifEnabled="feature $context">
feature is enabled
</div>

there's also the not enabled alternative ifNotEnabled

统计信息

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

GitHub 信息

  • Stars: 5
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-01-31