Changeset 918825
- Timestamp:
- 05/21/2014 05:44:49 PM (12 years ago)
- File:
-
- 1 edited
-
image-formatr/trunk/src/class.admin.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-formatr/trunk/src/class.admin.php
r918151 r918825 195 195 196 196 'prettyuse' => array( 197 'title' => 'PrettyPhoto popupenabled',197 'title' => 'PrettyPhoto library enabled', 198 198 'desc' => 'Use the prettyPhoto library included with the Image Formatr plugin to handle the popup effect?', 199 'html' => array('Uncheck this option to disable the pre-bundled prettyPhoto JavaScript Image library from loading. ',200 ' If you uncheck this option and have the Popup Effects setting checked above then you need to include your own image viewer library in your theme or in an integration plugin.'),199 'html' => array('Uncheck this option to disable the pre-bundled prettyPhoto JavaScript Image library from loading. If you uncheck this option and have the Popup Effects setting checked above then you need to include your own image viewer library in your theme or in an integration plugin that uses the "rel" atttribute.', 200 'See the <a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/documentation">documentation</a>.'), 201 201 ), 202 202 'ppspeed' => array( … … 240 240 $this-> add_settings(array('capatt' ), 'print_caption_dd', 'main_section'); 241 241 $this-> add_settings(array('newtitle'), 'print_textbox' , 'main_section'); 242 $this-> add_settings(array('group' ), 'print_textbox' , 'main_section');243 242 244 243 add_settings_section('thumb_section', 'Thumbnail settings', array($this, 'admin_overview'), __FILE__); … … 247 246 $this-> add_settings(array('imgdefs' ), 'print_img_defs' , 'thumb_section'); 248 247 $this-> add_settings(array('imgaddl' ), 'print_img_addl' , 'thumb_section'); 249 $this-> add_settings(array('attthumb' ), 'print_attach_dd', 'thumb_section');248 $this-> add_settings(array('attthumb'), 'print_attach_dd' , 'thumb_section'); 250 249 251 250 add_settings_section('style_section', 'Styling settings', array($this, 'admin_overview'), __FILE__); … … 258 257 add_settings_section('pretty_section', 'PrettyPhoto popup settings', array($this, 'admin_overview'), __FILE__); 259 258 $this-> add_settings(array('prettyuse', 'ppsocial'), 'print_checkbox', 'pretty_section'); 260 $this-> add_settings(array('pptheme' ), 'print_theme_dd', 'pretty_section'); 261 $this-> add_settings(array('ppspeed' ), 'print_speed_dd', 'pretty_section'); 259 $this-> add_settings(array('pptheme'), 'print_theme_dd', 'pretty_section'); 260 $this-> add_settings(array('ppspeed'), 'print_speed_dd', 'pretty_section'); 261 $this-> add_settings(array('group' ), 'print_textbox' , 'pretty_section'); 262 262 263 263 add_settings_section('adv_section', 'Advanced settings', array($this, 'admin_overview'), __FILE__); 264 264 $this-> add_settings(array('priority'), 'print_priority', 'adv_section'); 265 $this-> add_settings(array('force' ), 'print_checkbox', 'adv_section');265 $this-> add_settings(array('force' ), 'print_checkbox', 'adv_section'); 266 266 $this-> add_settings(array('uninstal'), 'print_checkbox', 'adv_section'); 267 267 }
Note: See TracChangeset
for help on using the changeset viewer.