-- -- Copyright (C) 2001, 2002 OpenForce -- -- -- this 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. -- -- this 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 forums datasources for portal portlets -- Copyright (C) 2001 OpenForce -- @author dan chak (chak@openforce.net) and arjun -- @creation-date 2002-08-20 -- $Id: recruiting-portlet-create.sql,v 1.1 2002/08/21 19:11:31 chak Exp $ create function inline_0() returns integer as ' declare ds_id portal_datasources.datasource_id%TYPE; begin ds_id := portal_datasource__new ( ''recruiting_portlet'', ''Candidate Recruiting 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'' ); -- recruiting-specific procs -- package_id must be configured perform portal_datasource__set_def_param ( ds_id, ''t'', ''f'', ''package_id'', '''' ); return 0; end;' language 'plpgsql'; select inline_0(); drop function inline_0(); create function inline_0() returns integer as ' declare foo integer; begin -- create the implementation foo := acs_sc_impl__new ( ''portal_datasource'', ''recruiting_portlet'', ''recruiting_portlet'' ); return 0; end;' language 'plpgsql'; select inline_0(); drop function inline_0(); create function inline_0() returns integer as ' declare foo integer; begin -- add all the hooks foo := acs_sc_impl_alias__new ( ''portal_datasource'', ''recruiting_portlet'', ''GetMyName'', ''recruiting_portlet::get_my_name'', ''TCL'' ); foo := acs_sc_impl_alias__new ( ''portal_datasource'', ''recruiting_portlet'', ''GetPrettyName'', ''recruiting_portlet::get_pretty_name'', ''TCL'' ); foo := acs_sc_impl_alias__new ( ''portal_datasource'', ''recruiting_portlet'', ''Link'', ''recruiting_portlet::link'', ''TCL'' ); foo := acs_sc_impl_alias__new ( ''portal_datasource'', ''recruiting_portlet'', ''AddSelfToPage'', ''recruiting_portlet::add_self_to_page'', ''TCL'' ); foo := acs_sc_impl_alias__new ( ''portal_datasource'', ''recruiting_portlet'', ''Show'', ''recruiting_portlet::show'', ''TCL'' ); foo := acs_sc_impl_alias__new ( ''portal_datasource'', ''recruiting_portlet'', ''Edit'', ''recruiting_portlet::edit'', ''TCL'' ); foo := acs_sc_impl_alias__new ( ''portal_datasource'', ''recruiting_portlet'', ''RemoveSelfFromPage'', ''recruiting_portlet::remove_self_from_page'', ''TCL'' ); return 0; end;' language 'plpgsql'; select inline_0(); drop function inline_0(); create function inline_0() returns integer as ' declare foo integer; begin -- Add the binding perform acs_sc_binding__new ( ''portal_datasource'', ''recruiting_portlet'' ); return 0; end;' language 'plpgsql'; select inline_0(); drop function inline_0(); \i recruiting-admin-portlet-create.sql