Sha256: 81cfa5edcf85e2d1d33757452843bb137fbacd0e771617331fd4d5943f9310f9

Contents?: true

Size: 1.86 KB

Versions: 11

Compression:

Stored size: 1.86 KB

Contents

module ActiveScaffold::Config
  class Base
    include ActiveScaffold::Configurable
    extend ActiveScaffold::Configurable

    def initialize(core_config)
      @core = core_config
    end

    def self.inherited(subclass)
      class << subclass
        # the crud type of the action. possible values are :create, :read, :update, :delete, and nil.
        # this is not a setting for the developer. it's self-description for the actions.
        def crud_type; @crud_type; end

        protected

        def crud_type=(val)
          raise ArgumentError, "unknown CRUD type #{val}" unless [:create, :read, :update, :delete].include?(val.to_sym)
          @crud_type = val.to_sym
        end
      end
    end

    # delegate
    def crud_type; self.class.crud_type end

    def label(model = @core.label(:count => 1))
      @label.nil? ? model : as_(@label, :model => model)
    end
    
    # the user property gets set to the instantiation of the local UserSettings class during the automatic instantiation of this class.
    attr_accessor :user

    # define a default action_group for this action
    # e.g. 'members.crud'
    class_attribute :action_group

    # action_group this action should belong to
    attr_accessor :action_group

    class UserSettings
      def initialize(conf, storage, params)
        # the session hash relevant to this action
        @session = storage
        # all the request params
        @params = params
        # the configuration object for this action
        @conf = conf
      end
    end
    
    def formats
      @formats ||= []
    end
    
    def formats=(val)
      @formats=val
    end
    
    private
    
    def columns=(val)
      @columns = ActiveScaffold::DataStructures::ActionColumns.new(*val)
      @columns.action = self
      @columns.set_columns(@core.columns) if @columns.respond_to?(:set_columns)
      @columns
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
active_scaffold-3.1.14 lib/active_scaffold/config/base.rb~
active_scaffold-3.0.26 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.13 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.12 lib/active_scaffold/config/base.rb~
active_scaffold-3.0.25 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.11 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.10 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.9 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.8 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.7 lib/active_scaffold/config/base.rb~
active_scaffold-3.1.6 lib/active_scaffold/config/base.rb~