CMS: Unknown
Server IP: 162.214.74.50
Root:
/home/iideug/public_html/harshils.iideug.com
Directory:
home
/
iideug
/
public_html
/
test
/
wp-includes
/
customize
File: /home/iideug/public_html/test/wp-includes/customize/class-wp-customize-cropped-image-control.php
<?php /** * Customize API: WP_Customize_Cropped_Image_Control class * * @package WordPress * @subpackage Customize * @since 4.4.0 */ /** * Customize Cropped Image Control class. * * @since 4.3.0 * * @see WP_Customize_Image_Control */ class WP_Customize_Cropped_Image_Control extends WP_Customize_Image_Control { /** * Control type. * * @since 4.3.0 * @var string */ public $type = 'cropped_image'; /** * Suggested width for cropped image. * * @since 4.3.0 * @var int */ public $width = 150; /** * Suggested height for cropped image. * * @since 4.3.0 * @var int */ public $height = 150; /** * Whether the width is flexible. * * @since 4.3.0 * @var bool */ public $flex_width = false; /** * Whether the height is flexible. * * @since 4.3.0 * @var bool */ public $flex_height = false; /** * Enqueue control related scripts/styles. * * @since 4.3.0 */ public function enqueue() { wp_enqueue_script( 'customize-views' ); parent::enqueue(); } /** * Refresh the parameters passed to the JavaScript via JSON. * * @since 4.3.0 * * @see WP_Customize_Control::to_json() */ public function to_json() { parent::to_json(); $this->json['width'] = absint( $this->width ); $this->json['height'] = absint( $this->height ); $this->json['flex_width'] = absint( $this->flex_width ); $this->json['flex_height'] = absint( $this->flex_height ); } }
Name
Size
Modify
Permissions
Actions
class-wp-customize-background-position-control.php
3 kb
2023-02-07 17:10:22
644
U
E
O
D
class-wp-customize-color-control.php
3.1 kb
2025-07-16 22:52:40
644
U
E
O
D
class-wp-customize-cropped-image-control.php
1.4 kb
2023-09-08 09:32:24
644
U
E
O
D
class-wp-customize-filter-setting.php
588 b
2017-07-27 00:41:44
644
U
E
O
D
class-wp-customize-nav-menu-auto-add-control.php
1.1 kb
2017-10-05 02:22:50
644
U
E
O
D
class-wp-customize-nav-menu-item-control.php
8 kb
2024-06-03 20:35:14
644
U
E
O
D
class-wp-customize-nav-menu-item-setting.php
27.2 kb
2025-09-30 16:28:32
644
U
E
O
D
class-wp-customize-nav-menu-location-control.php
2.2 kb
2024-01-28 07:50:18
644
U
E
O
D
class-wp-customize-nav-menu-locations-control.php
2.8 kb
2023-02-23 11:06:20
644
U
E
O
D
class-wp-customize-nav-menu-name-control.php
1.1 kb
2017-10-05 02:22:50
644
U
E
O
D
class-wp-customize-nav-menu-section-ajax-response.php
1.1 kb
2023-02-07 17:10:22
644
U
E
O
D
class-wp-customize-nav-menus-panel.php
3.2 kb
2023-02-07 17:10:22
644
U
E
O
D
class-wp-customize-new-menu-section-reference.php
4.2 kb
2023-02-07 17:10:22
644
U
E
O
D
class-wp-customize-site-icon-control.php
5 kb
2025-08-18 20:27:38
644
U
E
O
D
class-wp-customize-theme-control.php
11.6 kb
2023-09-14 01:25:16
644
U
E
O
D
class-wp-customize-themes-panel.php
3.3 kb
2024-10-13 19:09:12
644
U
E
O
D