承接 bitrix-expert/tools 相关项目开发

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

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

bitrix-expert/tools

最新稳定版本:1.5.2

Composer 安装命令:

composer require bitrix-expert/tools

包简介

Helpers for developers on Bitrix

README 文档

README

Build Status Latest Stable Version Total Downloads License

Tools for developers on Bitrix CMS:

  • IblockTools: finder info blocks and properties by IDs or symbol codes.
<?php
use Bex\Tools\Iblock\IblockTools;

$iblockFinder = IblockTools::find('iblock_type', 'iblock_code');

$iblockId = $iblockFinder->id();
$propEnumId = $iblockFinder->propEnumId('PROP_CODE', 'VALUE_XML_ID');

// And much more…
  • GroupTools: finder users groups by IDs or symbol codes.
<?php
use Bex\Tools\Group\GroupTools;

$groupFinder = GroupTools::find('group_code');

$groupId = $groupFinder->id();
$groupCode = GroupTools::findById(3)->code();

// And that's not all ;-)
  • HlBlockTools: finder for highloadblock IDs by it's names.
<?php
use Bex\Tools\HlBlock\HlBlockTools;

$hlBlockFinder = HlBlockTools::find('ReferenceName');

$hlBlockId = $hlBlockFinder->id();
$hlBlockName = HlBlockTools::findById(2)->name();
  • Catalog\GroupTools: finder for catalog groups (price types) by it's names? id's or "BASE" flag.
<?php
use Bex\Tools\Catalog\GroupTools;

$catalogGroupFinder = GroupTools::find('RETAIL');
$priceTypeId = $catalogGroupFinder->id();

$priceTypeName = GroupTools::findBase()->name();
  • Prevents the creation of infoblocks with the same codes.
  • Prevents the creation of user groups with the same string id.

Installation

Add library on your Composer:

composer require bitrix-expert/tools

Documentation

See wiki and php docs in the classes of library.

统计信息

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

GitHub 信息

  • Stars: 36
  • Watchers: 12
  • Forks: 15
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-04-09