定制 jitesoft/wp-base 二次开发

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

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

jitesoft/wp-base

最新稳定版本:1.1.0

Composer 安装命令:

composer require jitesoft/wp-base

包简介

Internal base package for jitesoft wordpress plugins - not a plugin itself.

README 文档

README

This is not a plugin, nor really anything more than a core part with a few minor functions for jitesoft WordPress plugins.

The lib allows the jitesoft(...) method to be called, which basically contains a static container which can be queried for objects.
In case a jitesoft plugin uses the base package, it will inject the object into the container making it available to easily query from anywhere:

<?php
jitesoft('logger')->debug(...);

Depending on the type of plugin, the object could be either of a singleton type (which means that it won't be re-created) or as a standard object.

You could make use of the object in other plugins if wanted, but there will be no real support of the package.

Basic usage

// Add something
Jitesoft\WordPress\Plugins\Base\getContainer()->bind('something', 'something');
// Get something
Jitesoft\WordPress\Plugins\Base\getContainer()->get('something'); // 'something'
// Get something via convenience method
jitesoft('something'); // 'something'

For full documentation about the underlying container, check out jitesoft/container

License

MIT

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-08-19