документация для переводов, каталога датасорсов, конфига
обновление документация под текущие реалии
This commit is contained in:
parent
46fe25fc86
commit
ab6ad01441
10 changed files with 285 additions and 17 deletions
|
@ -5,8 +5,8 @@
|
|||
*/
|
||||
function Platform() {
|
||||
/**
|
||||
* @name tm
|
||||
* @public
|
||||
* @name tm
|
||||
* @type {Trees}
|
||||
* @memberof Platform
|
||||
*/
|
||||
|
@ -15,13 +15,11 @@ function Platform() {
|
|||
/**
|
||||
*
|
||||
* @public
|
||||
* @function mm
|
||||
* @name mm
|
||||
* @type {Models}
|
||||
* @memberof Platform
|
||||
* @returns {Models}
|
||||
*/
|
||||
this.mm = function () {
|
||||
|
||||
};
|
||||
this.mm = new Models();
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -30,9 +28,25 @@ function Platform() {
|
|||
* @memberof Platform
|
||||
* @returns {CoreTranslations}
|
||||
*/
|
||||
this.core_translations = function () {
|
||||
this.core_translations = new CoreTranslations();
|
||||
|
||||
};
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function core_config
|
||||
* @memberof Platform
|
||||
* @returns {CoreConfig}
|
||||
*/
|
||||
this.core_config = new CoreConfig();
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function datasource_manager
|
||||
* @memberof Platform
|
||||
* @returns {Datasource}
|
||||
*/
|
||||
this.datasource_manager = new Datasource();
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue