Module: Optimacms::ApplicationHelper

Included in:
ApplicationController
Defined in:
app/helpers/optimacms/application_helper.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object



8
9
10
11
12
# File 'app/helpers/optimacms/application_helper.rb', line 8

def method_missing(method, *args, &block)
  main_app.send(method, *args, &block)
rescue NoMethodError
  super
end

Instance Method Details

#block(name) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'app/helpers/optimacms/application_helper.rb', line 32

def block(name)
  x = Dir.pwd
  #y = File.expand_path File.dirname(__FILE__)
  d = File.dirname(@optimacms_tpl)


  # try1 - in the current folder
  f = File.join(Dir.pwd, 'app', 'views', d, name+'.html')
  return render file: f if File.exists? f

  #
  names = []
  names << [d, name+".html"]
  names << ["", name+".html"]

  #
  parts = name.split /\//

  parts[-1] = '_'+parts[-1]
  name2 = parts.join('/')

  names << [d, name2+".html"]
  names << ["", name2+".html"]

  # try 2
  names.each do |p|
    f = File.join(Dir.pwd, 'app', 'views', p[0], p[1])
    (return render file: f)      if File.exists? f

    f = File.join(Dir.pwd, 'app', 'views', p[0], p[1]+".haml")
    (return render file: f)      if File.exists? f

    f = File.join(Dir.pwd, 'app', 'views', p[0], p[1]+".erb")
    (return render file: f)      if File.exists? f
  end

  # default render
  return render f
end

#meta_tags(title = nil, keywords = nil, desc = nil) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'app/helpers/optimacms/application_helper.rb', line 18

def meta_tags(title=nil, keywords=nil, desc=nil)
  title ||= @optimacms_meta_title
  keywords ||= @optimacms_meta_keywords
  desc ||= @optimacms_meta_description

  return %(<title>#{title}</title>
<meta name="keywords" content="#{keywords}"/>
<meta name="description" content="#{desc}"/>
  ).html_safe
  #content_tag(:title, title)+
  #content_tag(:meta, nil, content: keywords, name: 'keywords')+
  #content_tag(:meta, nil, content: desc, name: 'description')
end

#site_page_path(h) ⇒ Object



73
74
75
76
77
78
79
80
# File 'app/helpers/optimacms/application_helper.rb', line 73

def site_page_path(h)
  if h.is_a? String
    cms.cms_page_path(h+'.html')
  elsif h.is_a? Hash
    cms.cms_page_path(h[:page]+'.html')
  end

end

#tinymce_editor_insert_blockObject



14
15
16
# File 'app/helpers/optimacms/application_helper.rb', line 14

def tinymce_editor_insert_block
  '<pre>{{block:name:sub}}</pre>'
end