Class: Alchemy::Admin::NodesController

Inherits:
ResourcesController show all
Includes:
CurrentLanguage
Defined in:
app/controllers/alchemy/admin/nodes_controller.rb

Constant Summary

Constants inherited from ResourcesController

ResourcesController::COMMON_SEARCH_FILTER_EXCLUDES

Instance Method Summary collapse

Methods inherited from ResourcesController

#create, #destroy, #edit, #resource_filters, #resource_filters_for_select, #resource_handler, #resource_has_deprecated_filters, #resource_has_filters, #show, #update

Methods included from ResourcesHelper

#contains_relations?, #edit_resource_path, #new_resource_path, #render_attribute, #render_resources, #resource_attribute_field_options, #resource_has_tags, #resource_instance_variable, #resource_model, #resource_name, #resource_path, #resource_relations_names, #resource_scope, #resource_url_proxy, #resource_window_size, #resources_instance_variable, #resources_path, #sortable_resource_header_column

Methods inherited from BaseController

#leave

Methods included from Modules

included, #module_definition_for, register_module

Methods included from Alchemy::AbilityHelper

#current_ability

Methods included from ConfigurationMethods

#configuration, #multi_language?, #multi_site?, #prefix_locale?

Instance Method Details

#indexObject



8
9
10
# File 'app/controllers/alchemy/admin/nodes_controller.rb', line 8

def index
  @root_nodes = Node.language_root_nodes
end

#newObject



12
13
14
15
16
17
# File 'app/controllers/alchemy/admin/nodes_controller.rb', line 12

def new
  @node = Node.new(
    parent_id: params[:parent_id],
    language: @current_language
  )
end