@HSU`UBE2d/d#dh72d72dhhVcc@HSU`U@G2d/d2d0#d{h;d72dh|h0 cc'k@HSU`UBE2d/d#dh72d72dhh0 cc5U2BPR G3UPp2UPtP:2U`<4U`(|03U`>U0|PZ2U`>(X@ȎJ@ȎJ@S@ c߈c @HSU`U@@D2d/d$d8d72d72dh}8dh/d<5 @HSU`UBE2d/d#dh72d72dhhh/d>/** * returns a list of the admin settings * * @param string $section the section id for which to load the settings * @param bool $subAdminOnly only return settings sub admins are supposed to see (since 17.0.0) * @return array> list of settings with priority as key * @since 9.1.0 */+<: @HSU`U@@D2d/d$d8d72d72dh}8dh/d)/** * Creates an url * * @param string $appName app * @param string $file file * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded * @return string the url * * Returns a url to the given app and file. */:/** * Returns an URL for an image or file * @param string $appName the name of the app * @param string $file the name of the file * @param array $args array with param=>value, will be appended to the returned url * The value of $args will be urlencoded * @return string the url * @since 6.0.0 */p  ?cD @HSU`U@@D2d/d$d8d72d72dh}8d ! $this->configuration_objects ) { $this->configuration_objects = $this->prepare_configuration_objects(); } return $this->configuration_objects; } private function prepare_configuration_objects() { $configuration_objects = apply_filters( 'wp_smush_next_gen_configuration_objects', array() ); $filtered = array(); foreach ( $configuration_objects as $key => $configuration_object ) { if ( is_a( $configuration_object, Next_Gen_Configuration_Interface::class ) ) { $filtered[ $key ] = $configuration_object; } } return $filtered; } public function save_previously_active_format_key( $format ) { update_option( self::PREVIOUSLY_ACTIVE_FORMAT_KEY, $format, false ); } public function get_previously_active_format_key() { return get_option( self::PREVIOUSLY_ACTIVE_FORMAT_KEY ); } }