Sha256: 2820bb9208a007d93c0b81808bbb0e733ad5d17cf0e20cd56f3bf6573598d738
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# frozen_string_literal: true module Occams module Admin module CmsHelper # Wrapper around Occams::FormBuilder def occams_form_with(**options, &block) form_options = options.merge(builder: Occams::FormBuilder) form_options[:bootstrap] = { layout: :horizontal } form_options[:local] = true bootstrap_form_with(**form_options, &block) end def occams_admin_partial(path, params = {}) render path, params rescue ActionView::MissingTemplate if Occams.config.reveal_cms_partials content_tag(:div, class: "occams-admin-partial") do path end end end # Injects some content somewhere inside cms admin area def cms_hook(name, options = {}) Occams::ViewHooks.render(name, self, options) end # @param [String] fragment_id # @param [ActiveStorage::Blob] attachment # @param [Boolean] multiple # @return [String] {{ cms:page_file_link #{fragment_id}, ... }} def cms_page_file_link_tag(fragment_id:, attachment:, multiple:) filename = ", filename: \"#{attachment.filename}\"" if multiple as = ", as: image" if attachment.image? "{{ cms:page_file_link #{fragment_id}#{filename}#{as} }}" end # @param [Occams::Cms::File] file # @return [String] {{ cms:file_link #{file.id}, ... }} def cms_file_link_tag(file) as = ", as: image" if file.attachment.image? "{{ cms:file_link #{file.id}#{as} }}" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
occams-1.0.0 | app/helpers/occams/admin/cms_helper.rb |