-- -- Copyright (C) 2001, 2002 MIT -- -- This file is part of dotLRN. -- -- dotLRN is free software; you can redistribute it and/or modify it under the -- terms of the GNU General Public License as published by the Free Software -- Foundation; either version 2 of the License, or (at your option) any later -- version. -- -- dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -- details. -- -- -- The news applet for dotLRN -- -- ben,arjun@openforce.net -- -- 10/05/2001 -- -- Postgresql port adarsh@symphinity.com -- -- 8th July 2002 -- create the implementation select acs_sc_impl__new ( 'dotlrn_applet', 'dotlrn_news', 'dotlrn_news' ); -- add all the hooks -- GetPrettyName select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'GetPrettyName', 'dotlrn_news::get_pretty_name', 'TCL' ); -- AddApplet select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'AddApplet', 'dotlrn_news::add_applet', 'TCL' ); -- RemoveApplet select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'RemoveApplet', 'dotlrn_news::remove_applet', 'TCL' ); -- AddAppletToCommunity select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'AddAppletToCommunity', 'dotlrn_news::add_applet_to_community', 'TCL' ); -- RemoveAppletFromCommunity select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'RemoveAppletFromCommunity', 'dotlrn_news::remove_applet_from_community', 'TCL' ); -- AddUser select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'AddUser', 'dotlrn_news::add_user', 'TCL' ); -- RemoveUser select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'RemoveUser', 'dotlrn_news::remove_user', 'TCL' ); -- AddUserToCommunity select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'AddUserToCommunity', 'dotlrn_news::add_user_to_community', 'TCL' ); -- RemoveUserFromCommunity select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'RemoveUserFromCommunity', 'dotlrn_news::remove_user_from_community', 'TCL' ); -- AddPortlet select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'AddPortlet', 'dotlrn_news::add_portlet', 'TCL' ); -- RemovePortlet select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'RemovePortlet', 'dotlrn_news::remove_portlet', 'TCL' ); -- Clone select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'Clone', 'dotlrn_news::clone', 'TCL' ); select acs_sc_impl_alias__new ( 'dotlrn_applet', 'dotlrn_news', 'ChangeEventHandler', 'dotlrn_news::change_event_handler', 'TCL' ); -- Add the binding select acs_sc_binding__new ( 'dotlrn_applet', 'dotlrn_news' );