plugin qi_cible_select
This commit is contained in:
parent
a6d45ed58b
commit
d4d515d313
1
vendor/plugins/qi_cible_select/README.markdown
vendored
Normal file
1
vendor/plugins/qi_cible_select/README.markdown
vendored
Normal file
@ -0,0 +1 @@
|
||||
Copyright (c) 2011 Nicolas Bally
|
11
vendor/plugins/qi_cible_select/Rakefile
vendored
Normal file
11
vendor/plugins/qi_cible_select/Rakefile
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
require 'rake'
|
||||
require 'spec/rake/spectask'
|
||||
|
||||
desc 'Default: run all specs.'
|
||||
task :default => :spec
|
||||
|
||||
desc 'Run all specs'
|
||||
Spec::Rake::SpecTask.new(:spec) do |t|
|
||||
t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
|
||||
t.spec_files = FileList['spec/**/*_spec.rb']
|
||||
end
|
6
vendor/plugins/qi_cible_select/init.rb
vendored
Normal file
6
vendor/plugins/qi_cible_select/init.rb
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
# -*- encoding : utf-8 -*-
|
||||
if Object.const_defined?("Formtastic")
|
||||
require 'qi_cible_select'
|
||||
Formtastic::SemanticFormBuilder.send(:include, Formtastic::QiCibleSelect)
|
||||
end
|
||||
|
37
vendor/plugins/qi_cible_select/lib/qi_cible_select.rb
vendored
Normal file
37
vendor/plugins/qi_cible_select/lib/qi_cible_select.rb
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
# -*- encoding : utf-8 -*-
|
||||
|
||||
module Formtastic
|
||||
module QiCibleSelect
|
||||
|
||||
|
||||
|
||||
protected
|
||||
|
||||
def qi_cible_select_input(method, options)
|
||||
|
||||
r = rand(1000000000000000000000000000)
|
||||
|
||||
html_options = options.delete(:input_html) || {}
|
||||
|
||||
self.label(method, options_for_label(options)) +
|
||||
template.content_tag(:fieldset, template.text_field_tag("cible_name", (object.cible ? object.cible.cible_name : "aucuns élément séléctionné"), :id =>"name_#{r}" )+ self.manager_select_cible_link(method, options, r) + self.send(:hidden_field, method.to_s+"_id", html_options.merge!(:id => "input_id_"+r.to_s))+ self.send(:hidden_field, method.to_s+"_type", html_options.merge!(:id => "input_type_"+r.to_s)))
|
||||
end
|
||||
|
||||
|
||||
def manager_select_cible_link(method, options, r)
|
||||
|
||||
template.content_tag(:a, "Modifier ce lien", :href => "#", :onclick => "select_cible_from_manager('"+r.to_s+"');return false;")
|
||||
|
||||
end
|
||||
|
||||
def image_preview(method, options,r)
|
||||
|
||||
if object.send("#{method}?")
|
||||
template.content_tag(:span, template.image_tag(object.image_file.file.large.medium.small.thumb.url, :id => "img_"+r.to_s), :class => "preview ")
|
||||
else
|
||||
template.content_tag(:span, template.image_tag("", :id => "img_"+r.to_s), :class => "preview ")
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
7
vendor/plugins/qi_cible_select/spec/spec_helper.rb
vendored
Normal file
7
vendor/plugins/qi_cible_select/spec/spec_helper.rb
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
# -*- encoding : utf-8 -*-
|
||||
begin
|
||||
require File.dirname(__FILE__) + '/../../../../spec/spec_helper'
|
||||
rescue LoadError
|
||||
puts "You need to install rspec in your base app"
|
||||
exit
|
||||
end
|
2
vendor/plugins/qi_cible_select/spec/to_slug_spec.rb
vendored
Normal file
2
vendor/plugins/qi_cible_select/spec/to_slug_spec.rb
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# -*- encoding : utf-8 -*-
|
||||
require File.dirname(__FILE__) + '/spec_helper.rb'
|
Loading…
x
Reference in New Issue
Block a user