acs-admin-callback-procs.tcl

Callback procs for acs-admin

Location:
packages/acs-admin/tcl/acs-admin-callback-procs.tcl
Created:
2007-06-15
Author:
Malte Sussdorff <sussdorff@sussdorff.de>

Procedures in this file

Detailed information

callback::acs_admin::member_state_change::contract (private)

 callback::acs_admin::member_state_change::contract \
    [ -user_id user_id ] [ -member_state member_state ]

Callback which is executed after a successful change of member state. Allows other software to do additional tasks upon the user.

Switches:
-user_id
(optional)
User ID of the user upon whom the state change was done
-member_state
(optional)
New state of the user

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.
[ hide source ]

Content File Source

ad_library {
    
    Callback procs for acs-admin
    @author Malte Sussdorff (sussdorff@sussdorff.de)
    @creation-date 2007-06-15
}

namespace eval acs_admin {}

d_proc -public -callback acs_admin::member_state_change {
    -user_id
    -member_state
} {
    Callback which is executed after a successful change of member state. Allows other software to do additional tasks
    upon the user.
    
    @param user_id User ID of the user upon whom the state change was done
    @param member_state New state of the user
} -


# Local variables:
#    mode: tcl
#    tcl-indent-level: 4
#    indent-tabs-mode: nil
# End: