Changeset 1267298
- Timestamp:
- 10/16/2015 10:33:32 AM (10 years ago)
- Location:
- ninja-forms-blocks/trunk
- Files:
-
- 2 edited
-
njf_blocks.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ninja-forms-blocks/trunk/njf_blocks.php
r1267227 r1267298 3 3 Plugin Name: Ninja Forms Blocks 4 4 Description: Add blocks functionality to Ninja Forms 5 Version: 1. 15 Version: 1.2 6 6 Author: Alexander Chernov 7 7 Author URI: http://alexuslab.com … … 14 14 'display_function' => 'njf_display_block_open', 15 15 'sidebar' => 'layout_fields', 16 'group' => 'layout_elements', 16 17 'display_label' => false, 17 18 'display_wrap' => false, 19 'edit_label' => false, 20 'edit_label_pos' => false, 21 'edit_req' => false, 22 'edit_custom_class' => true, 23 'edit_help' => false, 24 'edit_meta' => false, 25 'edit_conditional' => true, 26 'process_field' => false, 18 27 ); 19 28 $close_args = array( … … 21 30 'display_function' => 'njf_display_block_close', 22 31 'sidebar' => 'layout_fields', 32 'group' => 'layout_elements', 23 33 'display_label' => false, 24 34 'display_wrap' => false, 35 'edit_label' => false, 36 'edit_label_pos' => false, 37 'edit_req' => false, 38 'edit_custom_class' => true, 39 'edit_help' => false, 40 'edit_meta' => false, 41 'edit_conditional' => true, 42 'process_field' => false, 25 43 ); 26 44 if( function_exists( 'ninja_forms_register_field' ) ) { -
ninja-forms-blocks/trunk/readme.txt
r1267227 r1267298 12 12 == Description == 13 13 14 Ninja Forms Blocks is real y simple plugin adding two form elements: [BLOCK] and [/BLOCK].14 Ninja Forms Blocks is really simple plugin adding two form elements: [BLOCK] and [/BLOCK]. 15 15 [BLOCK] is a html `div` element with custom class option. Using blocks you can: 16 16 … … 44 44 == Changelog == 45 45 46 = 1.2 = 47 * Blocks removed from places not realated to form layout 48 46 49 = 1.1 = 47 50 * Blocks moved to layout section
Note: See TracChangeset
for help on using the changeset viewer.