Sha256: 9cd6a00659a06bc1a98b0b0c8121bd07d4d65bb5c73259e6c9a7b50ec8f6b3b5

Contents?: true

Size: 1.32 KB

Versions: 3

Compression:

Stored size: 1.32 KB

Contents

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

class OrangeRoute < Orange::SiteCarton
  id
  admin do
    text :slug, :display_name => "Search Engine Friendly Page URL", :length => 255
    text :link_text, :length => 255
    text :reroute_to, :length => 255
    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
  is :awesome_set, :scope => [:orange_site]

  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 default_slug?
    /^page-\d+/ =~ slug
  end
  
  def self.home_for_site(site_id)
    site_id = OrangeSite.get(site_id) unless site_id.is_a? OrangeSite
    root(:orange_site => site_id) 
  end


  def self.create_home_for_site(site_id, opts = {})
    site_id = OrangeSite.get(site_id) unless site_id.is_a? OrangeSite
    opts = opts.with_defaults({:orange_site => 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

3 entries across 3 versions & 1 rubygems

Version Path
orange-more-0.7.3 lib/orange-more/sitemap/cartons/route.rb
orange-more-0.7.2 lib/orange-more/sitemap/cartons/route.rb
orange-more-0.7.1 lib/orange-more/sitemap/cartons/route.rb