Sha256: 339dfaa782c21b28c16ce67038bf053fb90df14cc3762851880a1c6cf82ff021

Contents?: true

Size: 1.12 KB

Versions: 8

Compression:

Stored size: 1.12 KB

Contents

require 'orange-more/administration/cartons/site_carton'
require 'dm-is-awesome_set'

class OrangeRoute < Orange::SiteCarton
  id
  admin do
    text :slug
    text :link_text
    boolean :show_in_nav, :default => false, :display_name => 'Show in Navigation?'
  end
  orange do
    string :resource
    string :resource_id
    string :resource_action
    boolean :accept_args, :default => true
  end
  include DataMapper::Transaction::Resource # Make sure Transactions are included (for awesome_set)
  is :awesome_set, :scope => [:orange_site_id]

  def full_path
    self_and_ancestors.inject('') do |path, part| 
      if part.parent # Check if this is a child
        path = path + part.slug + '/' 
      else  # The root slug is just the initial '/'
        path = path + '/' 
      end
    end
  end

  def self.home_for_site(site_id)
    root(:orange_site_id => site_id) 
  end


  def self.create_home_for_site(site_id, opts = {})
    opts = opts.with_defaults({:orange_site_id => site_id, :slug => '_index_', :accept_args => false, :link_text => 'Home'})
    home = self.new(opts)
    home.move(:root)
    home.save
    home
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
orange-0.2.8 lib/orange-more/sitemap/cartons/route.rb
orange-0.2.7 lib/orange-more/sitemap/cartons/route.rb
orange-0.2.6 lib/orange-more/sitemap/cartons/route.rb
orange-0.2.5 lib/orange-more/sitemap/cartons/route.rb
orange-0.2.4 lib/orange-more/sitemap/cartons/route.rb
orange-0.2.3 lib/orange-more/sitemap/cartons/route.rb
orange-0.1.10 lib/orange-more/sitemap/cartons/route.rb
orange-0.1.8 lib/orange-more/sitemap/cartons/route.rb