Changeset 1433822
- Timestamp:
- 06/09/2016 12:35:58 PM (10 years ago)
- Location:
- monthly-data-sheets/trunk
- Files:
-
- 5 edited
-
css/admin-styles.css (modified) (1 diff)
-
lib/functions.php (modified) (1 diff)
-
lib/meta.php (modified) (1 diff)
-
monthly-data-sheets.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
monthly-data-sheets/trunk/css/admin-styles.css
r1424176 r1433822 9 9 margin-bottom: 2em; 10 10 } 11 12 .post-type-datasheet #post-body-content .wp-editor-wrap #wp-content-editor-container .mce-edit-area, 13 .post-type-datasheet textarea#content { 14 height: 200px !important; 15 overflow-x: hidden; 16 overflow-y: auto; 17 } -
monthly-data-sheets/trunk/lib/functions.php
r1424176 r1433822 61 61 foreach ($columns as $column_id => $column) { 62 62 $column_label = is_array($column) ? $column['label'] : $column; 63 $column_name = is_array($ row) ? $column['name'] : $column;63 $column_name = is_array($column) ? $column['name'] : $column; 64 64 65 65 /* First entry will be the column name */ -
monthly-data-sheets/trunk/lib/meta.php
r1428503 r1433822 32 32 33 33 public function init_metabox() { 34 35 34 add_action('add_meta_boxes', array($this, 'add_metabox')); 36 35 add_action('save_post', array($this, 'save_metabox'), 10, 2); -
monthly-data-sheets/trunk/monthly-data-sheets.php
r1424194 r1433822 4 4 * Plugin Name: Monthly Data Sheets 5 5 * Description: This plugin provides an admin interface to create monthly data sheets. The front end interface provides option to edit and view data sheets in each month. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Author: Reenu Shomy K 8 8 * License: GPL2 -
monthly-data-sheets/trunk/readme.txt
r1424206 r1433822 67 67 = 1.0.0 = 68 68 * Initial Release 69 70 == 1.0.1 71 * Edit page display bug fix
Note: See TracChangeset
for help on using the changeset viewer.