Sha256: 7340ce27c66ce4de36edba6616a861284207cacebe0cd8551a9cc7400b578566

Contents?: true

Size: 1.07 KB

Versions: 8

Compression:

Stored size: 1.07 KB

Contents

module Locomotive
  class GlobalActionsCell < MenuCell

    attr_reader :current_locomotive_account, :current_site_url

    def show(args)
      @current_locomotive_account = args[:current_locomotive_account]
      @current_site_url           = args[:current_site_url]
      super
    end

    protected

    def build_list
      add :welcome, url: edit_my_account_url, i18n_options: {
        key:    'locomotive.shared.header.welcome',
        arg:    :name,
        value:  @current_locomotive_account.name
      }

      add :see, url: current_site_url, id: 'viewsite', target: '_blank'

      if Locomotive.config.multi_sites? && current_locomotive_account.sites.size > 1
        add :switch, url: '#', id: 'sites-picker-link'
      end

      add :help, url: 'http://doc.locomotivecms.com', class: 'tutorial', id: 'help', target: '_blank'
      add :logout, url: destroy_locomotive_session_url, data: { confirm: t('locomotive.messages.confirm') }, method: :delete
    end

    def localize_label(label, options = {})
      I18n.t("locomotive.shared.header.#{label}", options)
    end

  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
locomotive_cms-2.2.2 app/cells/locomotive/global_actions_cell.rb
locomotive_cms-2.2.1 app/cells/locomotive/global_actions_cell.rb
locomotive_cms-2.2.0 app/cells/locomotive/global_actions_cell.rb
locomotive_cms-2.1.4 app/cells/locomotive/global_actions_cell.rb
locomotive_cms-2.1.3 app/cells/locomotive/global_actions_cell.rb
locomotive_cms-2.1.2 app/cells/locomotive/global_actions_cell.rb
locomotive_cms-2.1.1 app/cells/locomotive/global_actions_cell.rb
locomotive_cms-2.1.0 app/cells/locomotive/global_actions_cell.rb