All Projects → notamedia → bitrix-i18n

notamedia / bitrix-i18n

Licence: other
The internationalization module for Bitrix CMS

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to bitrix-i18n

demo.adminhelper
Example of a module created using Admin Helper
Stars: ✭ 30 (+57.89%)
Mutual labels:  bitrix
bxorder
OpenSource Bitrix Order
Stars: ✭ 62 (+226.32%)
Mutual labels:  bitrix
coffeediz.schema
Набор компонентов 1С-Битрикс для реализации микроразметки по схеме Schema.org
Stars: ✭ 14 (-26.32%)
Mutual labels:  bitrix
bitrix-memcached
Bitrix Cache with php-memcached / Кэш Битрикс на Memcached
Stars: ✭ 13 (-31.58%)
Mutual labels:  bitrix
bx-data
Удобные классы для 1C-Bitrix.
Stars: ✭ 24 (+26.32%)
Mutual labels:  bitrix
bitrix
Bitrix24 REST API client that doesn't suck. Suffer no more.
Stars: ✭ 59 (+210.53%)
Mutual labels:  bitrix
hlhelpers
Набор методов для работы с highloadblock 1С-Битрикс
Stars: ✭ 18 (-5.26%)
Mutual labels:  bitrix
bitrix-redis
Bitrix Cache with phpredis / Кэш Битрикс на Redis
Stars: ✭ 23 (+21.05%)
Mutual labels:  bitrix
bitrixclear
Чистый шаблон 1С-Битрикс / Clear template 1C-Bitrix
Stars: ✭ 20 (+5.26%)
Mutual labels:  bitrix
6umpukc
Тулинг для разработки сайтов и решений на Bitrix под Ubuntu/Windows
Stars: ✭ 13 (-31.58%)
Mutual labels:  bitrix
bitrix-elastic-indexer
Индексация инфоблоков Bitrix в Elasticsearch
Stars: ✭ 23 (+21.05%)
Mutual labels:  bitrix
bitrixtemplate stylish
Набор уроков по интеграции Bootstrap дизайна в 1С-Битрикс (набор демо-данных + шаблон 1C-Bitrix)
Stars: ✭ 39 (+105.26%)
Mutual labels:  bitrix
bitrix-module-tools
ООП Фреймворк разработки проектов на CMS Bitrix
Stars: ✭ 40 (+110.53%)
Mutual labels:  bitrix
bitrix-module-bunit
BUnit - фреймворк модульного тестрования для CMS Bitrix
Stars: ✭ 20 (+5.26%)
Mutual labels:  bitrix
bitrix-antispam
1C Bitrix anti-spam mod.
Stars: ✭ 10 (-47.37%)
Mutual labels:  bitrix
mvc.base
Базовый компонент Битрикс для простой реализации MVC
Stars: ✭ 14 (-26.32%)
Mutual labels:  bitrix

i18n in Bitrix CMS

Module of internationalization of content in info blocks for Bitrix CMS. Allows you to create multiple language versions of the item with a public ID.

See the screenshots of the interface of internationalization in the wiki.

Installation

Download the library using Composer:

composer require notamedia/bitrix-i18n

Create migration file with contents:

<?php

use Bitrix\Main\Loader;
use Notamedia\i18n\Iblock\Converter\IblockManager;

// 1. Installation module notamedia.i18n

// 2. Convertion info block
if (Loader::includeModule('notamedia.i18n')) {
    $iblockId = 1; // ID of your info block

    $manager = new IblockManager($iblockId);
    $manager->convert('PUBLIC_ID', 'LANG', 'ru');
}

Requirements

  • PHP >= 5.4
  • Bitrix CMS >= 15.5.10
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].