Difference between revisions of "Misc:find mang"

From SDU
Jump to: navigation, search
(New page: __NOTOC__ Category:Customizations Category:r11 Category:Spell Code {{Global Header}} {{Global Announcement}} == Overview == Returna a list of managers of one specific group. Fo...)
 
(No difference)

Latest revision as of 11:27, 10 September 2009

To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.

Overview

Returna a list of managers of one specific group. For a group provided in the first argument get list of all managers with notify_flag checked.

It is used in macro Notify Group Manager.

Usage

<source lang="javascript"> string misc_find_mang(uuid group) </source>

Results

Return space (' ') separated list of persids to contact table (returned managers).

Examples

<source lang="javascript"> string contact_persid; if (!is_null(group)) { contact_persid = misc::find_mang(group); } </source>