-- -- 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. -- -- -- Creates dotlrn datasource for showing staff members for a community -- Copyright (C) 2001 MIT -- @author Arjun Sanyal (arjun@openforce.net) -- @creation-date 2001-30-09 -- $Id: dotlrn-members-staff-portlet-create.sql,v 1.5 2018/07/11 21:57:26 hectorr 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 -- -- 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( 'dotlrn_members_staff_portlet', 'Displays the dotlrn community info' ); -- 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' ); -- portlet-specific procs -- community_id must be configured! perform portal_datasource__set_def_param ( ds_id, 't', 'f', 'community_id', '' ); 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', 'dotlrn_members_staff_portlet', 'dotlrn_members_staff_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', 'dotlrn_members_staff_portlet', 'GetMyName', 'dotlrn_members_staff_portlet::get_my_name', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'dotlrn_members_staff_portlet', 'GetPrettyName', 'dotlrn_members_staff_portlet::get_pretty_name', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'dotlrn_members_staff_portlet', 'Link', 'dotlrn_members_staff_portlet::link', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'dotlrn_members_staff_portlet', 'AddSelfToPage', 'dotlrn_members_staff_portlet::add_self_to_page', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'dotlrn_members_staff_portlet', 'Show', 'dotlrn_members_staff_portlet::show', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'dotlrn_members_staff_portlet', 'Edit', 'dotlrn_members_staff_portlet::edit', 'TCL' ); foo := acs_sc_impl_alias__new ( 'portal_datasource', 'dotlrn_members_staff_portlet', 'RemoveSelfFromPage', 'dotlrn_members_staff_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', 'dotlrn_members_staff_portlet' ); return 0; END; $$ LANGUAGE plpgsql; select inline_0(); drop function inline_0();