-- -- 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. -- -- -- packages/forums-portlet/sql/forums-portlets-create.sql -- -- Creates forums datasources for portal portlets -- Copyright (C) 2001 MIT -- @author Arjun Sanyal (arjun@openforce.net) -- @creation-date 2001-30-09 -- $Id: forums-portlet-create.sql,v 1.3 2014/10/27 16:41:41 victorg Exp $ -- This is free software distributed under the terms of the GNU Public -- License version 2 or higher. Full text of the license is available -- from the GNU Project: http://www.fsf.org/copyleft/gpl.html -- ported to postgres by mohan pakkurti (mohan@pakkurti.com) -- 2002-07-12 -- \i forums-portlet-sc-create.sql -- -- procedure inline_0/0 -- CREATE OR REPLACE FUNCTION inline_0( ) RETURNS integer AS $$ DECLARE ds_id portal_datasources.datasource_id%TYPE; BEGIN ds_id := portal_datasource__new ( 'forums_portlet', 'Displays the forums' ); -- 4 defaults procs -- shadeable_p perform portal_datasource__set_def_param ( ds_id, 't', 't', 'shadeable_p', 't' ); -- shaded_p perform portal_datasource__set_def_param ( ds_id, 't', 't', 'shaded_p', 'f' ); -- hideable_p perform portal_datasource__set_def_param ( ds_id, 't', 't', 'hideable_p', 't' ); -- user_editable_p perform portal_datasource__set_def_param ( ds_id, 't', 't', 'user_editable_p', 'f' ); -- link_hideable_p perform portal_datasource__set_def_param ( ds_id, 't', 't', 'link_hideable_p', 't' ); -- forums-specific procs -- package_id must be configured perform portal_datasource__set_def_param ( ds_id, 't', 'f', 'package_id', '' ); -- do we show the community name or not? perform portal_datasource__set_def_param ( ds_id, 't', 'f', 'display_group_name_p', 't' ); return 0; END; $$ LANGUAGE plpgsql; select inline_0(); drop function inline_0(); -- -- procedure inline_0/0 -- CREATE OR REPLACE FUNCTION inline_0( ) RETURNS integer AS $$ DECLARE foo integer; BEGIN -- create the implementation foo := acs_sc_impl__new ( 'portal_datasource', 'forums_portlet', 'forums_portlet' ); return 0; END; $$ LANGUAGE plpgsql; select inline_0(); drop function inline_0(); -- -- procedure inline_0/0 -- CREATE OR REPLACE FUNCTION inline_0( ) RETURNS integer AS $$ DECLARE foo integer; BEGIN -- add all the hooks foo := acs_sc_impl_alias__new ( 'portal_datasource', 'forums_portlet', 'GetMyName', 'forums_portlet::get_my_name', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'forums_portlet', 'GetPrettyName', 'forums_portlet::get_pretty_name', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'forums_portlet', 'Link', 'forums_portlet::link', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'forums_portlet', 'AddSelfToPage', 'forums_portlet::add_self_to_page', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'forums_portlet', 'Show', 'forums_portlet::show', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'forums_portlet', 'Edit', 'forums_portlet::edit', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'forums_portlet', 'RemoveSelfFromPage', 'forums_portlet::remove_self_from_page', 'TCL' ); return 0; END; $$ LANGUAGE plpgsql; select inline_0(); drop function inline_0(); -- -- procedure inline_0/0 -- CREATE OR REPLACE FUNCTION inline_0( ) RETURNS integer AS $$ DECLARE foo integer; BEGIN -- Add the binding perform acs_sc_binding__new ( 'portal_datasource', 'forums_portlet' ); return 0; END; $$ LANGUAGE plpgsql; select inline_0(); drop function inline_0(); \i forums-admin-portlet-create.sql