PluginProbe ʕ •ᴥ•ʔ
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF / 2.0.6
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF v2.0.6
2.0.6 2.0.5 trunk 1.3.7 1.4.0 1.4.1 1.4.2 1.4.6 1.5.0 1.5.3 1.5.6 1.5.8 1.6.5 1.6.6 1.6.9 1.7.0 1.7.4 1.8.1 1.8.2 1.9.0 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4
robin-image-optimizer / includes / classes / models / class-rio-base-helper.php
robin-image-optimizer / includes / classes / models Last commit date
class-rio-attachment-extra-data.php 7 months ago class-rio-base-active-record.php 7 months ago class-rio-base-extra-data.php 7 months ago class-rio-base-helper.php 7 months ago class-rio-base-object.php 7 months ago class-rio-process-queue-table.php 1 month ago class-rio-server-smushit-extra-data.php 7 months ago class.webp-extra-data.php 7 months ago
class-rio-base-helper.php
25 lines
1 <?php
2
3 // Exit if accessed directly
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7
8 class RIO_Base_Helper {
9 /**
10 * Configure passed object.
11 *
12 * @param object $object Object class to configure.
13 * @param array $config Key => value list of props to be set on object.
14 *
15 * @return mixed
16 */
17 public static function configure( $object, $config ) {
18 foreach ( $config as $name => $value ) {
19 $object->$name = $value;
20 }
21
22 return $object;
23 }
24 }
25