This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| LANGUAGES=( | |
| "de:WordPress/Localization/LocalizedResources.de-DE.resx" | |
| "es:WordPress/Localization/LocalizedResources.es-ES.resx" | |
| "it:WordPress/Localization/LocalizedResources.it-IT.resx" | |
| "ja:WordPress/Localization/LocalizedResources.ja-JP.resx" | |
| "nl:WordPress/Localization/LocalizedResources.nl.resx" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: tests/image/size.php | |
| =================================================================== | |
| --- tests/image/size.php (revision 1257) | |
| +++ tests/image/size.php (working copy) | |
| @@ -95,57 +95,6 @@ | |
| $this->assertequals(array(525, 700), $out); | |
| } | |
| - function test_shrink_dimensions_default() { | |
| - $out = wp_shrink_dimensions(640, 480); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: tests/image/resize.php | |
| =================================================================== | |
| --- tests/image/resize.php (revision 1254) | |
| +++ tests/image/resize.php (working copy) | |
| @@ -6,107 +6,114 @@ | |
| * @group upload | |
| */ | |
| abstract class WP_Tests_Image_Resize_UnitTestCase extends WP_Image_UnitTestCase { | |
| - // image_resize( $file, $max_w, $max_h, $crop=false, $suffix=null, $dest_path=null, $jpeg_quality=75) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Unknown_Crop_Top_Center_Editor extends WP_Image_Editor_GD { | |
| /** | |
| * Processes current image and saves to disk | |
| * multiple sizes from single source. | |
| * | |
| * @since 3.5.0 | |
| * @access public |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function ajax_save_columns() { | |
| global $wp_registered_sidebars; | |
| header( "Content-Type: application/json" ); | |
| if( isset( $_POST['sidebar'], $_POST['amount_columns'] ) && ! empty( $wp_registered_sidebars[ $_POST['sidebar'] ] ) ) { | |
| $options = get_option( 'horizontal_sidebar_columns', array() ); | |
| $options[ $_POST['sidebar'] ] = absint( $_POST['amount_columns'] ); | |
| update_option( 'horizontal_sidebar_columns', $options ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Gallery_Javascript { | |
| private $link; | |
| function __construct() { | |
| add_filter( 'post_gallery', array( $this, 'enqueue_script' ), 20, 2 ); | |
| add_filter( 'gallery_style', array( $this, 'add_class' ) ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Nav_Menu_Widget_Classname { | |
| public function __construct() { | |
| add_action( 'widget_display_callback', array( $this, 'menu_different_class' ), 10, 2 ); | |
| } | |
| public function menu_different_class( $settings, $widget ) { | |
| if( $widget instanceof WP_Nav_Menu_Widget ) | |
| add_filter( 'wp_nav_menu_args', array( $this, 'wp_nav_menu_args' ) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Responsive_Childtheme_Enqueue { | |
| public function __construct() { | |
| add_action( 'wp_enqueue_scripts', array( $this, 'wp_enqueue_scripts' ) ); | |
| } | |
| public function wp_enqueue_scripts() { | |
| wp_deregister_style( 'responsive-style' ); | |
| wp_register_style( 'responsive-style', get_template_directory_uri() . '/style.css', false, get_responsive_template_version() ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'wp_ajax_image-editor', 'fix_wp_ajax_image_editor', 0 ); | |
| function fix_wp_ajax_image_editor() { | |
| $attachment_id = intval( $_POST['postid'] ); | |
| if ( empty( $attachment_id ) || ! current_user_can( 'edit_post', $attachment_id ) ) | |
| wp_die( -1 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Marko_Shortcodes { | |
| public function __construct() { | |
| add_shortcode( 'engine_info', array( $this, 'engine_info' ) ); | |
| } | |
| public function engine_info( $atts ) { | |
| global $wp_version, $wpdb, $batcache, $wp_object_cache; |