Changeset 1195543 for php-code-widget/trunk/execphp.php
- Timestamp:
- 07/09/2015 04:15:48 PM (11 years ago)
- File:
-
- 1 edited
-
php-code-widget/trunk/execphp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
php-code-widget/trunk/execphp.php
r1003528 r1195543 5 5 Description: Like the Text widget, but it will take PHP code as well. Heavily derived from the Text widget code in WordPress. 6 6 Author: Otto 7 Version: 2. 27 Version: 2.3 8 8 Text Domain: php-code-widget 9 9 Author URI: http://ottodestruct.com … … 15 15 $widget_ops = array('classname' => 'widget_execphp', 'description' => __('Arbitrary text, HTML, or PHP Code', 'php-code-widget')); 16 16 $control_ops = array('width' => 400, 'height' => 350); 17 $this-> WP_Widget('execphp', __('PHP Code', 'php-code-widget'), $widget_ops, $control_ops);17 $this->__construct('execphp', __('PHP Code', 'php-code-widget'), $widget_ops, $control_ops); 18 18 } 19 19
Note: See TracChangeset
for help on using the changeset viewer.