css
5 years ago
js
1 year ago
nova.php
1 year ago
portfolios.php
1 year ago
testimonial.php
1 year ago
testimonial.php
411 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Register a Testimonial post type and handle displaying it anywhere on the site. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | * |
| 7 | * @phpcs:disable Generic.Files.OneObjectStructurePerFile.MultipleFound |
| 8 | * @phpcs:disable MediaWiki.Usage.NestedFunctions.NestedFunction |
| 9 | */ |
| 10 | |
| 11 | // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move classes to appropriately-named class files. |
| 12 | |
| 13 | if ( ! class_exists( 'Jetpack_Testimonial' ) ) { |
| 14 | /** |
| 15 | * Add a Testimonial CPT, and display it with a shortcode |
| 16 | */ |
| 17 | class Jetpack_Testimonial { |
| 18 | |
| 19 | /** |
| 20 | * Store an instance of the new class |
| 21 | * |
| 22 | * @var Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial |
| 23 | */ |
| 24 | protected $new_instance; |
| 25 | |
| 26 | /** |
| 27 | * Initialize class. |
| 28 | * |
| 29 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 30 | */ |
| 31 | public static function init() { |
| 32 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 33 | return Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial::init(); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Conditionally hook into WordPress. |
| 38 | * |
| 39 | * Setup user option for enabling CPT. |
| 40 | * If user has CPT enabled, show in admin. |
| 41 | */ |
| 42 | public function __construct() { |
| 43 | $this->new_instance = new Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial(); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Forward all method calls to the Jetpack_Testimonial class. |
| 48 | * |
| 49 | * @param string $name The name of the method. |
| 50 | * @param array $arguments The arguments to pass to the method. |
| 51 | * |
| 52 | * @throws Exception If the method is not found. |
| 53 | */ |
| 54 | public function __call( $name, $arguments ) { |
| 55 | if ( method_exists( $this->new_instance, $name ) ) { |
| 56 | return call_user_func_array( array( $this->new_instance, $name ), $arguments ); |
| 57 | } else { |
| 58 | // Handle cases where the method is not found |
| 59 | throw new Exception( sprintf( 'Undefined method: %s', esc_html( $name ) ) ); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Forward all static method calls to the Jetpack_Testimonial class. |
| 65 | * |
| 66 | * @param string $name The name of the method. |
| 67 | * @param array $arguments The arguments to pass to the method. |
| 68 | * |
| 69 | * @throws Exception If the method is not found. |
| 70 | */ |
| 71 | public static function __callStatic( $name, $arguments ) { |
| 72 | if ( method_exists( Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial::class, $name ) ) { |
| 73 | return call_user_func_array( array( Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial::class, $name ), $arguments ); |
| 74 | } else { |
| 75 | // Handle cases where the method is not found |
| 76 | throw new Exception( sprintf( 'Undefined static method: %s', esc_html( $name ) ) ); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Registers the custom post types and adds action/filter handlers, but |
| 82 | * only if the site supports it. |
| 83 | * |
| 84 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 85 | */ |
| 86 | public function maybe_register_cpt() { |
| 87 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 88 | $this->new_instance->maybe_register_cpt(); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Add a checkbox field in 'Settings' > 'Writing' |
| 93 | * for enabling CPT functionality. |
| 94 | * |
| 95 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 96 | * |
| 97 | * @return void |
| 98 | */ |
| 99 | public function settings_api_init() { |
| 100 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 101 | $this->new_instance->settings_api_init(); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * HTML code to display a checkbox true/false option |
| 106 | * for the CPT setting. |
| 107 | * |
| 108 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 109 | * |
| 110 | * @return void |
| 111 | */ |
| 112 | public function setting_html() { |
| 113 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 114 | $this->new_instance->setting_html(); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Add to REST API post type allowed list. |
| 119 | * |
| 120 | * @param array $post_types Array of allowed post types. |
| 121 | * @return array `$post_types` with our type added. |
| 122 | */ |
| 123 | public function allow_cpt_rest_api_type( $post_types ) { |
| 124 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 125 | return $this->new_instance->allow_cpt_rest_api_type( $post_types ); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Bump Testimonial > New Activation stat |
| 130 | * |
| 131 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 132 | */ |
| 133 | public function new_activation_stat_bump() { |
| 134 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 135 | $this->new_instance->new_activation_stat_bump(); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Bump Testimonial > Option On/Off stats to get total active |
| 140 | * |
| 141 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 142 | * |
| 143 | * @param mixed $old The old option value. |
| 144 | * @param mixed $new The new option value. |
| 145 | */ |
| 146 | public function update_option_stat_bump( $old, $new ) { |
| 147 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 148 | $this->new_instance->update_option_stat_bump( $old, $new ); |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Bump Testimonial > Published Testimonials stat when testimonials are published |
| 153 | * |
| 154 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 155 | */ |
| 156 | public function new_testimonial_stat_bump() { |
| 157 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 158 | $this->new_instance->new_testimonial_stat_bump(); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Flush permalinks when CPT option is turned on/off |
| 163 | * |
| 164 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 165 | */ |
| 166 | public function flush_rules_on_enable() { |
| 167 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 168 | $this->new_instance->flush_rules_on_enable(); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Count published testimonials and flush permalinks when first testimonial is published |
| 173 | * |
| 174 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 175 | */ |
| 176 | public function flush_rules_on_first_testimonial() { |
| 177 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 178 | $this->new_instance->flush_rules_on_first_testimonial(); |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Flush permalinks when CPT supported theme is activated |
| 183 | * |
| 184 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 185 | */ |
| 186 | public function flush_rules_on_switch() { |
| 187 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 188 | $this->new_instance->flush_rules_on_switch(); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * On plugin/theme activation, check if current theme supports CPT |
| 193 | * |
| 194 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 195 | */ |
| 196 | public static function activation_post_type_support() { |
| 197 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 198 | Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial::activation_post_type_support(); |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * On theme switch, check if CPT item exists and disable if not |
| 203 | * |
| 204 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 205 | */ |
| 206 | public function deactivation_post_type_support() { |
| 207 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 208 | $this->new_instance->deactivation_post_type_support(); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Register Post Type |
| 213 | * |
| 214 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 215 | */ |
| 216 | public function register_post_types() { |
| 217 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 218 | $this->new_instance->register_post_types(); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Update messages for the Testimonial admin. |
| 223 | * |
| 224 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 225 | * |
| 226 | * @param array $messages Existing post update messages. |
| 227 | * @return array Updated `$messages`. |
| 228 | */ |
| 229 | public function updated_messages( $messages ) { |
| 230 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 231 | return $this->new_instance->updated_messages( $messages ); |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Change ‘Enter Title Here’ text for the Testimonial. |
| 236 | * |
| 237 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 238 | * |
| 239 | * @param string $title Placeholder text. Default 'Add title'. |
| 240 | * @return string Replacement title. |
| 241 | */ |
| 242 | public function change_default_title( $title ) { |
| 243 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 244 | return $this->new_instance->change_default_title( $title ); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Change ‘Title’ column label on all Testimonials page. |
| 249 | * |
| 250 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 251 | * |
| 252 | * @param array $columns An array of column names. |
| 253 | * @return array Updated array. |
| 254 | */ |
| 255 | public function edit_title_column_label( $columns ) { |
| 256 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 257 | return $this->new_instance->edit_title_column_label( $columns ); |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Follow CPT reading setting on CPT archive page |
| 262 | * |
| 263 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 264 | * |
| 265 | * @param WP_Query $query A WP_Query instance. |
| 266 | */ |
| 267 | public function query_reading_setting( $query ) { |
| 268 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 269 | $this->new_instance->query_reading_setting( $query ); |
| 270 | } |
| 271 | |
| 272 | /** |
| 273 | * If Infinite Scroll is set to 'click', use our custom reading setting instead of core's `posts_per_page`. |
| 274 | * |
| 275 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 276 | * |
| 277 | * @param array $settings Array of Infinite Scroll settings. |
| 278 | * @return array Updated `$settings`. |
| 279 | */ |
| 280 | public function infinite_scroll_click_posts_per_page( $settings ) { |
| 281 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 282 | return $this->new_instance->infinite_scroll_click_posts_per_page( $settings ); |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * Add CPT to Dotcom sitemap |
| 287 | * |
| 288 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 289 | * |
| 290 | * @param array $post_types Array of post types included in sitemap. |
| 291 | * @return array Updated `$post_types`. |
| 292 | */ |
| 293 | public function add_to_sitemap( $post_types ) { |
| 294 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 295 | return $this->new_instance->add_to_sitemap( $post_types ); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Adds a submenu link to the Customizer. |
| 300 | * |
| 301 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 302 | */ |
| 303 | public function add_customize_page() { |
| 304 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 305 | $this->new_instance->add_customize_page(); |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * Adds testimonial section to the Customizer. |
| 310 | * |
| 311 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 312 | * |
| 313 | * @param WP_Customize_Manager $wp_customize Customizer instance. |
| 314 | */ |
| 315 | public function customize_register( $wp_customize ) { |
| 316 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 317 | $this->new_instance->customize_register( $wp_customize ); |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * Add Featured image to theme mod if necessary. |
| 322 | * |
| 323 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 324 | * |
| 325 | * @param array $opt The value of the current theme modification. |
| 326 | * @return array Updated `$opt`. |
| 327 | */ |
| 328 | public function coerce_testimonial_image_to_url( $opt ) { |
| 329 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 330 | return $this->new_instance->coerce_testimonial_image_to_url( $opt ); |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * Our [testimonial] shortcode. |
| 335 | * Prints Testimonial data styled to look good on *any* theme. |
| 336 | * |
| 337 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 338 | * |
| 339 | * @param array $atts Shortcode attributes. |
| 340 | * |
| 341 | * @return string HTML from `self::jetpack_testimonial_shortcode_html()`. |
| 342 | */ |
| 343 | public static function jetpack_testimonial_shortcode( $atts ) { |
| 344 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 345 | return Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial::jetpack_testimonial_shortcode( $atts ); |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | /** |
| 350 | * Additional Testimonial customizer options. |
| 351 | * |
| 352 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 353 | */ |
| 354 | function jetpack_testimonial_custom_control_classes() { |
| 355 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 356 | /** |
| 357 | * Clean the title parameter. |
| 358 | */ |
| 359 | class Jetpack_Testimonial_Title_Control extends WP_Customize_Control { |
| 360 | /** |
| 361 | * Sanitize content passed to control. |
| 362 | * |
| 363 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 364 | * |
| 365 | * @param string $value Control value. |
| 366 | * @return string Sanitized value. |
| 367 | */ |
| 368 | public static function sanitize_content( $value ) { |
| 369 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 370 | return Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial_Title_Control::sanitize_content( $value ); |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | /** |
| 375 | * Clean textarea content. |
| 376 | */ |
| 377 | class Jetpack_Testimonial_Textarea_Control extends WP_Customize_Control { |
| 378 | /** |
| 379 | * Control type. |
| 380 | * |
| 381 | * @var string |
| 382 | */ |
| 383 | public $type = 'textarea'; |
| 384 | |
| 385 | /** |
| 386 | * Render the control's content. |
| 387 | * |
| 388 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 389 | */ |
| 390 | public function render_content() { |
| 391 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 392 | $testimonial_textarea_control = new Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial_Textarea_Control( $this->manager, $this->id, $this->args ); |
| 393 | $testimonial_textarea_control->render_content(); |
| 394 | } |
| 395 | |
| 396 | /** |
| 397 | * Sanitize content passed to control. |
| 398 | * |
| 399 | * @deprecated 14.2 Moved to Classic Theme Helper package. |
| 400 | * |
| 401 | * @param string $value Control value. |
| 402 | * @return string Sanitized value. |
| 403 | */ |
| 404 | public static function sanitize_content( $value ) { |
| 405 | _deprecated_function( __FUNCTION__, 'jetpack-14.2' ); |
| 406 | return Automattic\Jetpack\Classic_Theme_Helper\Jetpack_Testimonial_Textarea_Control::sanitize_content( $value ); |
| 407 | } |
| 408 | } |
| 409 | } |
| 410 | } |
| 411 |