initi.doc/docfiles/providers/managers/publishers/components/publisher.js

71 lines
1.9 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* ### Паблишеры массовых действий
*
* Отнаследовано от базового паблишера.
*
*
* <br>
* Связанные объекты:
*
* - {@link Publishers} - Здесь можно найти примеры, как работать с менеджером паблишеров
* - {@link Publishers.ComponentsPublisherManager} - Здесь можно найти примеры, как работать с содержимым менеджера паблишеров массовых действий
*
* @group manager
* @class ComponentsPublisher
* @extends Publishers.PublisherManager.Publisher
* @memberof Publishers.ComponentsPublisherManager
*/
function ComponentsPublisher() {
/**
*
* @public
* @function dnd_update
* @param {v2.variable_container} data
* @returns {boolean}
* @memberof Publishers.ComponentsPublisherManager.ComponentsPublisher
*/
this.dnd_update = function (data) {
};
/**
*
* @public
* @function search_by_filter_data
* @param {v2.vc} _filter_data
* @param {v2.vc} _params
* @param {v2.model_type} _component_type
* @param {v2.integer} _max_results
* @returns {*}
* @memberof Publishers.ComponentsPublisherManager.ComponentsPublisher
*/
this.search_by_filter_data = function (_component_type, _filter_data, _params, _max_results) {
};
/**
*
* @public
* @function apply_by_node_id
* @param {v2.integer} _node_id
* @returns {*}
* @memberof Publishers.ComponentsPublisherManager.ComponentsPublisher
*/
this.apply_by_node_id = function (_node_id) {
};
/**
*
* @public
* @function fast_search_cancel
* @returns {*}
* @memberof Publishers.ComponentsPublisherManager.ComponentsPublisher
*/
this.fast_search_cancel = function () {
}
}