1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#########################################################
# OpenDb 1.0dev4 DVDFr.com (dvdfr) Site Plugin
#########################################################
#
# Site Plugin.
#
INSERT INTO s_site_plugin ( site_type, classname, order_no, title, image, description, external_url, items_per_page, more_info_url )VALUES ( 'dvdfr', 'dvdfr', 8, 'DVDFr.com', 'dvdfr.gif', 'A good source for region 2 DVD (french).', 'http://www.dvdfr.com', 25, 'http://www.dvdfr.com/dvd/dvd.php?id={dvdfr_id}' );
#
# Site Plugin Input Fields
#
INSERT INTO s_site_plugin_input_field ( site_type, field, order_no, description, prompt, field_type, default_value, refresh_mask ) VALUES ( 'dvdfr', 'title', 1, '', '<i>Title</i> Search', 'text', '', '{ifdef(alt_title, \'{alt_title} / \')}{title}' );
INSERT INTO s_site_plugin_input_field ( site_type, field, order_no, description, prompt, field_type, default_value, refresh_mask ) VALUES ( 'dvdfr', 'dvdfr_id', 2, '', 'DVDFr ID', 'text', '', '{dvdfr_id}' );
#
# Site Plugin Links
#
INSERT INTO s_site_plugin_link ( site_type, s_item_type_group, s_item_type, order_no, description, url, title_url ) VALUES ( 'dvdfr', '*', '*', 1, 'More Info', 'http://www.dvdfr.com/dvd/dvd.php?id={dvdfr_id}', 'http://www.dvdfr.com/search/search.php?multiname={title}&x=0&y=0' );
#
# Site Plugin System Attribute Type Map
#
INSERT INTO s_site_plugin_s_attribute_type_map ( site_type, s_item_type_group, s_item_type, variable, s_attribute_type ) VALUES ( 'dvdfr', '*', '*', 'alt_title', 'ALT_TITLE' );
INSERT INTO s_site_plugin_s_attribute_type_map ( site_type, s_item_type_group, s_item_type, variable, s_attribute_type ) VALUES ( 'dvdfr', 'VIDEO', '*', 'blurb', 'MOVIE_PLOT' );
INSERT INTO s_site_plugin_s_attribute_type_map ( site_type, s_item_type_group, s_item_type, variable, s_attribute_type ) VALUES ( 'dvdfr', 'VIDEO', '*', 'genre', 'MOVIEGENRE' );
INSERT INTO s_site_plugin_s_attribute_type_map ( site_type, s_item_type_group, s_item_type, variable, s_attribute_type ) VALUES ( 'dvdfr', '*', '*', 'title', 'S_TITLE' );
####################################################################################################
# Item Type / Attribute Type relationships
####################################################################################################
#
# Site Plugin Attribute Type(s)
#
INSERT INTO s_attribute_type ( s_attribute_type, description, prompt, input_type, display_type, s_field_type, site_type ) VALUES ( 'DVDFRID', 'Dvdfr ID', 'Dvdfr ID', 'hidden', 'hidden', '', 'dvdfr' );
INSERT INTO s_item_attribute_type (s_item_type, s_attribute_type, order_no, prompt, compulsory_ind) VALUES ( 'DVD', 'DVDFRID', '0', NULL, NULL);
|