Class: Caboose::PageCustomFieldsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Caboose::PageCustomFieldsController
- Defined in:
- app/controllers/caboose/page_custom_fields_controller.rb
Instance Method Summary collapse
-
#admin_add ⇒ Object
POST /admin/page-custom-fields.
-
#admin_delete ⇒ Object
DELETE /admin/page-custom-fields/:id.
-
#admin_edit ⇒ Object
GET /admin/page-custom-fields/:id.
-
#admin_index ⇒ Object
GET /admin/page-custom-fields.
-
#admin_json ⇒ Object
GET /admin/page-custom-fields/json.
-
#admin_json_single ⇒ Object
GET /admin/page-custom-fields/:id/json.
-
#admin_options ⇒ Object
GET /admin/page-custom-fields/:field-options.
-
#admin_update ⇒ Object
PUT /admin/page-custom-fields/:id.
- #fields_pager ⇒ Object
Methods inherited from ApplicationController
#add_ga_event, #admin_bulk_add, #admin_bulk_delete, #admin_bulk_update, #before_action, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #under_construction_or_forwarding_domain?, #user_is_allowed, #user_is_allowed_to, #validate_cookie, #validate_token, #var, #verify_logged_in
Instance Method Details
#admin_add ⇒ Object
POST /admin/page-custom-fields
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 72 def admin_add return if !user_is_allowed('pagecustomfields', 'add') resp = Caboose::StdClass.new f = PageCustomField.new f.name = params[:key] if f.name.nil? || f.name.length == 0 resp.error = 'A field key is required.' else f.site_id = @site.id f.key = f.name.gsub(' ', '_').gsub('-', '_').downcase f.field_type = PageCustomField::FIELD_TYPE_TEXT f.save resp.redirect = "/admin/page-custom-fields/#{f.id}" end render :json => resp end |
#admin_delete ⇒ Object
DELETE /admin/page-custom-fields/:id
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 94 def admin_delete return if !user_is_allowed('pagecustomfields', 'edit') if params[:id] == 'bulk' params[:model_ids].each do |fid| PageCustomFieldValue.where(:page_custom_field_id => fid).destroy_all PageCustomField.where(:id => fid).destroy_all end else fid = params[:id] PageCustomFieldValue.where(:page_custom_field_id => fid).destroy_all PageCustomField.where(:id => fid).destroy_all end render :json => { 'redirect' => '/admin/page-custom-fields' } end |
#admin_edit ⇒ Object
GET /admin/page-custom-fields/:id
44 45 46 47 48 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 44 def admin_edit return if !user_is_allowed('pagecustomfields', 'edit') @page_custom_field = PageCustomField.find(params[:id]) render :layout => 'caboose/admin' end |
#admin_index ⇒ Object
GET /admin/page-custom-fields
7 8 9 10 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 7 def admin_index return if !user_is_allowed_to 'view', 'pagecustomfields' render :layout => 'caboose/admin' end |
#admin_json ⇒ Object
GET /admin/page-custom-fields/json
13 14 15 16 17 18 19 20 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 13 def admin_json return if !user_is_allowed_to 'view', 'pagecustomfields' pager = self.fields_pager render :json => { :pager => pager, :models => pager.items } end |
#admin_json_single ⇒ Object
GET /admin/page-custom-fields/:id/json
37 38 39 40 41 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 37 def admin_json_single return if !user_is_allowed_to 'view', 'pagecustomfields' f = PageCustomField.find(params[:id]) render :json => f end |
#admin_options ⇒ Object
GET /admin/page-custom-fields/:field-options
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 112 def return if !user_is_allowed_to 'view', 'pagecustomfields' = [] case params[:field] when nil arr = PageCustomField.where(:site_id => @site.id).reorder(:key).all = arr.collect{ |a| { 'value' => a.id, 'text' => a.name }} when 'field-type' = [ { 'value' => PageCustomField::FIELD_TYPE_TEXT , 'text' => 'Text' }, { 'value' => PageCustomField::FIELD_TYPE_SELECT , 'text' => 'Select' }, { 'value' => PageCustomField::FIELD_TYPE_CHECKBOX , 'text' => 'Checkbox' }, { 'value' => PageCustomField::FIELD_TYPE_DATE , 'text' => 'Date' }, { 'value' => PageCustomField::FIELD_TYPE_DATETIME , 'text' => 'Datetime' } ] end render :json => end |
#admin_update ⇒ Object
PUT /admin/page-custom-fields/:id
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 51 def admin_update return if !user_is_allowed('pagecustomfields', 'edit') resp = Caboose::StdClass.new f = PageCustomField.find(params[:id]) save = true params.each do |name, value| case name when 'key' then f.key = value when 'name' then f.name = value when 'field_type' then f.field_type = value when 'default_value' then f.default_value = value when 'options' then f. = value end end resp.success = save && f.save render :json => resp end |
#fields_pager ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/controllers/caboose/page_custom_fields_controller.rb', line 22 def fields_pager return Caboose::Pager.new(params, { 'site_id' => @site.id, 'key_like' => '', 'name_like' => '' }, { 'model' => 'Caboose::PageCustomField', 'sort' => 'key', 'desc' => 'false', 'items_per_page' => 100, 'base_url' => '/admin/page-custom-fields' }) end |