In-Portal Developers Guide

This is a wiki-based Developers Guide for In-Portal Open Source CMS. The purpose of this guide is to provide advanced users, web developers and programmers with documentation on how to expand, customize and improve the functionality and the code the In-Portal software. Please consider contributing to our documentation writing effort.

K4:Registration of Unit Classes

From In-Portal Developers Guide

(Difference between revisions)
Jump to: navigation, search
m (1 версия)
Line 1: Line 1:
{{toc | category = Unit Configs | sortkey = 001.001}}
{{toc | category = Unit Configs | sortkey = 001.001}}
-
Для того, чтобы использовать тот или иной класс в <code>K4</code> его необходимо сначала зарегистрировать. Регистрация класса - это процесс, в результате которого <code>K4</code> становиться известно:
+
To use a particular class in <code>K4</code>, it must first be registered. Class registration is a process, the result of which is that <code>K4</code> learns:
-
* название класса;
+
* The name of the class;
-
* где находиться файл, в котором класс описан;
+
* The location of the file where the class is written;
-
* <code>pseudo</code>, который будет использоваться для обращения к объекту класса.
+
* The <code>pseudo</code> that's going to be used when referring to an object of the class.
-
{{InfoBox|'''<code>pseudo</code>''' - это ключевое слово, по которому можно в последствии из любого места в <code>K4</code> получить объект класса, зарегистрированного под этим <code>pseudo</code>.}}
+
{{InfoBox|'''<code>pseudo</code>''' - a keyword that can be used from any place in <code>K4</code> to get an object of a class that's registered under the <code>pseudo</code>.}}
-
== Получение объекта ==
+
== Getting an Object ==
-
Получить объект можно при помощи метода '''<code>kApplication::recallObject</code>''', например вот так:
+
The '''<code>kApplication::recallObject</code>''' can be used to get an object, for example:
<source lang="php">
<source lang="php">
$price =& $this->Application->recallObject('price');
$price =& $this->Application->recallObject('price');
Line 14: Line 14:
</source>
</source>
-
Для того, чтобы в [http://www.zend.com/products/zend_studio Zend Studio] работала автоматическая подсказка кода (<code>auto-complete</code>) нужно после получения объекта написать специальным образом оформленный комментарий. В общем случае формат этого комментария таков:
+
In order for <code>auto-complete</code> to work in [http://www.zend.com/products/zend_studio Zend Studio], it's necessary to put a specially formatted comment after getting an object. The general form of this kind of comment is:
<source lang="php">
<source lang="php">
/* @var $variable_name ClassName */
/* @var $variable_name ClassName */
</source>
</source>
-
== Регистрация класса ==
+
== Registering a Class ==
-
В [[K4:Unit Configs|конфигурационном файле]] есть ряд опций со схожим форматом, служащих для регистрации классов в <code>K4</code>:
+
In a [[K4:Unit Configs|configuration file]] there are a number of options with similar formats for the purpose of registering classes in <code>K4</code>:
{| class="prettytable"
{| class="prettytable"
-
! название опции || используемый <code>pseudo</code>
+
! Option Name || Corresponding <code>pseudo</code>
|-
|-
| {{ConfigProperty|ItemClass|array}} || <code><prefix></code>
| {{ConfigProperty|ItemClass|array}} || <code><prefix></code>
Line 36: Line 36:
|}
|}
-
В приведённой выше таблице "<code><prefix></code>" это значение опции [[K4:Unit Configs#Prefix|Prefix]] в конфигурационном файле. Значение каждой из выше написанных опций (кроме '''<code>RegisterClasses</code>''') является массивом следующего вида:
+
In the above table, "<code><prefix></code>" is the value of the [[K4:Unit Configs#Prefix|Prefix]] option in a configuration file. The value of each above option (except '''<code>RegisterClasses</code>''') is an array of the following format:
<source lang="php">
<source lang="php">
Array (
Array (
Line 46: Line 46:
</source>
</source>
-
Все ключи в данном массиве, кроме '''<code>require_classes</code>''', обязательные. Правда значения некоторых из ключей могут быть пустыми.
+
All of the keys in this array, except '''<code>require_classes</code>''', are required. However, the value of some of the keys can be empty.
{| class="prettytable"
{| class="prettytable"
-
! название || описание
+
! Name|| Description
|-
|-
-
| {{ConfigProperty|class|string}} || Название регистрируемого класса (название нового или системного класса).
+
| {{ConfigProperty|class|string}} || Name of the class being registered (new of new class or system class).
|-
|-
-
| {{ConfigProperty|file|string}} || Название файла, содержащего описание класса (по одному файлу на один класс); если указано пустое значение то подразумевается, что используется системный класс.
+
| {{ConfigProperty|file|string}} || Name of the file where the class is written (one file per class); if empty, then it's assumed that a system class is being used.
|-
|-
-
| {{ConfigProperty|build_event|string}} || Событие из [[EventHandler:About|обработчике событий]], использующееся для инициализации экземпляров регистрируемого класса (т.е. объекта). Другими словами это конструктор класса, который находиться в [[EventHandler:About|обработчике событий]].
+
| {{ConfigProperty|build_event|string}} || Event from [[EventHandler:About|event handlers]], used for initializing copies of the class being registered (i.e. an object). In other words, this is a class constructor, which is located in the [[EventHandler:About|event handler]].
|-
|-
-
| {{ConfigProperty|require_classes|mixed}} || Название класса(-ов), описание которого должно быть загружено перед использованием данного класса. Если указывается один класс, то значение данного ключа может быть строкой. Если указывается несколько классов, то значение данного ключа будет массивом.
+
| {{ConfigProperty|require_classes|mixed}} || Name of the class(es), which must be loaded before using this class. If one class is indicated, then the value of the key can be a String. If several classes are indicated, then the value of the key must be an Array.  
|}
|}
-
{{TipBox|Значение '''всех''' ключей (кроме [[#build_event|build_event]]) этого массива должно подчиняться правилу [[K4:Назначение имён|назначения имён]].}}
+
{{TipBox|The value of '''all''' keys (except  [[#build_event|build_event]]) of this array must follow [[K4:Назначение имён|naming conventions]] rules]].}}
-
== Подмена классов ==
+
== Substituting Classes ==
-
Бывают случаи, когда требуется заменить один или более используемых в системе классов. Для нужно использовать ключ <code>RegisterClasses</code>. При регистрации или подмене класса в ключе <code>RegisterClasses</code> требуется указывать дополнительный ключ <code>pseudo</code>. В данном случае его нужно указывать, т.к. он не может быть автоматически угадан (как во всех ранее описанных случаях).
+
There are cases when one or more classes used in the system must be substituted. To do this, the <code>RegisterClasses</code> key is used. When registering or substituting a class, in the <code>RegisterClasses</code> key it's required to indicate an additional <code>pseudo</code> key. In this case it must be set because it's not known automatically (like in all of the previously described situations).
<source lang="php">
<source lang="php">
'RegisterClasses' => Array (
'RegisterClasses' => Array (
-
Array ('pseudo' => 'u_TagProcessor', 'class' => 'EUserTagProcessor', 'file' => 'e_user_tp.php'), // подменить обработчик тэгов пользователей
+
Array ('pseudo' => 'u_TagProcessor', 'class' => 'EUserTagProcessor', 'file' => 'e_user_tp.php'), // substitute a user tag processor
-
Array ('pseudo' => 'PermissionsHelper', 'class' => 'ЕPermissionsHelper', 'file' => 'e_permission_helper.php'), // подменить класс помошника
+
Array ('pseudo' => 'PermissionsHelper', 'class' => 'ЕPermissionsHelper', 'file' => 'e_permission_helper.php'), // substitute a class helper
)
)
</source>
</source>
-
* При подмене класса нужно указывать тот "<code>pseudo</code>", с которым оригинальный (т.е. подменяемый) класс был изначально зарегистрирован. Этот "<code>pseudo</code>" можно узнать, если найти в проекте тот PHP-файл, в котором был изначально зарегистрирован требуемый класс.
+
* When substituting a class the "<code>pseudo</code>" must be set with which the original (i.e. the one being substituted) class was registered.
-
* Регистрация подменённого класса должна происходить после регистрации оригинального класса. Это условие будет автоматически выполняться, если подмена класса описана в файле "<code>custom/units/sections_config.php</code>".
+
* Registration of the substitute class must be done after registration of the original class. This requirement is automatically fulfilled if class substitution is done in the "<code>custom/units/sections_config.php</code>" file.
-
== Стандартные классы ==
+
== Standard Classes ==
-
Доступны следующие стандартные классы:
+
The following standard classes are available:
-
* '''<code>kDBItem</code>''' - класс, для работы с '''одной''' записью в базе;
+
* '''<code>kDBItem</code>''' - class for working with '''one''' database record;
-
* '''<code>kDBList</code>''' - класс для отображения содержания таблицы из базы (фильтрация, per-page и т.п.);
+
* '''<code>kDBList</code>''' - class for displaying the contents of a database table (filters, per-page, etc.);
-
* '''<code>kDBEventHandler</code>''' - класс для обработки стандартных событий из списков и форм редактирования;
+
* '''<code>kDBEventHandler</code>''' - class for processing standard events from lists and edit forms;
-
* '''<code>kDBTagProcessor</code>''' - класс для обработки стандартных тэгов, использующихся для вывода информации;
+
* '''<code>kDBTagProcessor</code>''' - class for processing standard tags used for displaying information;
-
* '''<code>kEventHandler</code>''' - базовый класс для всех обработчиков событий (использовать только в целях экономии оперативной памяти);
+
* '''<code>kEventHandler</code>''' - root class for all event handlers (use only with the goal of reducing memory usage);
-
Для стандартных классов значение ключа [[#file|file]] должно быть пустым.
+
The value of the [[#file|file]] key should be empty for standard classes.

Revision as of 21:38, 18 April 2009

Unit Configs Unit Configs
Статьи в этой категории

To use a particular class in K4, it must first be registered. Class registration is a process, the result of which is that K4 learns:

  • The name of the class;
  • The location of the file where the class is written;
  • The pseudo that's going to be used when referring to an object of the class.
Image:Infobox Icon.gif pseudo - a keyword that can be used from any place in K4 to get an object of a class that's registered under the pseudo.

Contents

Getting an Object

The kApplication::recallObject can be used to get an object, for example:

$price =& $this->Application->recallObject('price');
/* @var $price kDBItem */

In order for auto-complete to work in Zend Studio, it's necessary to put a specially formatted comment after getting an object. The general form of this kind of comment is:

/* @var $variable_name ClassName */

Registering a Class

In a configuration file there are a number of options with similar formats for the purpose of registering classes in K4:

Option Name Corresponding pseudo
ItemClass (array) <prefix>
ListClass (array) <prefix>_List
EventHandlerClass (array) <prefix>_EventHandler
TagProcessorClass (array) <prefix>_TagProcessor
RegisterClasses (array) Задаётся в ручную в ключе "pseudo".

In the above table, "<prefix>" is the value of the Prefix option in a configuration file. The value of each above option (except RegisterClasses) is an array of the following format:

Array (
	'class' => 'ClassName',
	'file' => 'FileName',
	'build_event' => 'BuildEventName',
	'require_classes' => 'RequiredClassName'
)

All of the keys in this array, except require_classes, are required. However, the value of some of the keys can be empty.

Name Description
class (string) Name of the class being registered (new of new class or system class).
file (string) Name of the file where the class is written (one file per class); if empty, then it's assumed that a system class is being used.
build_event (string) Event from event handlers, used for initializing copies of the class being registered (i.e. an object). In other words, this is a class constructor, which is located in the event handler.
require_classes (mixed) Name of the class(es), which must be loaded before using this class. If one class is indicated, then the value of the key can be a String. If several classes are indicated, then the value of the key must be an Array.
Image:Tipbox Icon.gif The value of all keys (except build_event) of this array must follow naming conventions rules]].

Substituting Classes

There are cases when one or more classes used in the system must be substituted. To do this, the RegisterClasses key is used. When registering or substituting a class, in the RegisterClasses key it's required to indicate an additional pseudo key. In this case it must be set because it's not known automatically (like in all of the previously described situations).

'RegisterClasses' => Array (
	Array ('pseudo' => 'u_TagProcessor', 'class' => 'EUserTagProcessor', 'file' => 'e_user_tp.php'), // substitute a user tag processor
	Array ('pseudo' => 'PermissionsHelper', 'class' => 'ЕPermissionsHelper', 'file' => 'e_permission_helper.php'), // substitute a class helper
)
  • When substituting a class the "pseudo" must be set with which the original (i.e. the one being substituted) class was registered.
  • Registration of the substitute class must be done after registration of the original class. This requirement is automatically fulfilled if class substitution is done in the "custom/units/sections_config.php" file.

Standard Classes

The following standard classes are available:

  • kDBItem - class for working with one database record;
  • kDBList - class for displaying the contents of a database table (filters, per-page, etc.);
  • kDBEventHandler - class for processing standard events from lists and edit forms;
  • kDBTagProcessor - class for processing standard tags used for displaying information;
  • kEventHandler - root class for all event handlers (use only with the goal of reducing memory usage);

The value of the file key should be empty for standard classes.