Module: DcCategoryControl
- Defined in:
- app/controls/dc_category_control.rb
Overview
DrgcmsControls for DcPage model.
Instance Method Summary collapse
-
#dc_new_record ⇒ Object
Called when new empty record is created.
Instance Method Details
#dc_new_record ⇒ Object
Called when new empty record is created
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'app/controls/dc_category_control.rb', line 32 def dc_new_record if params[:selected] end if params[:from_menu] # find menu and submenu. Menu class is defined in Site. = params[:id].split(';') = dc_get_site..find(.shift) = "#{dc_get_site.menu_class}_items".underscore = .send().find(.shift) while .size > 0 do = .send().find(.shift) end # Fill values for form @record.subject = .caption @record.dc_site_id = .dc_site_id @record. = params[:id] # set update_menu on save parameter params['p__update_menu'] = '1' else @record.design_id = params[:design_id] if params[:design_id] return unless params[:page_id] # inherit some values from currently active page if page = DcPage.find(params[:page_id]) @record.design_id = page.design_id @record. = page. @record.dc_site_id = page.dc_site_id end end end |