p_V ߢ>b()݊ paV ♔| -݊ PbV ũ"R -݊ cV | .݊ cV Im"V@.݊ rOV PV R DJ KаPV QV jpQV PRV 0 `]V ♔| bind SV @bV ]V ]V nV nV PV 0 0aV "R bindTo 6/'$1 aV ũ"R bindto XV bV `aV ]V 8nV nV PV 0 bV | call % + cV @bV ]V xnV nV PV 0 bV )EU fromCallable V 1 pcV Im"V fromcallable dV bV ]V 8nV nV PV 0 cV Ḇ closure V 1 PdV }@w Generator O,i jV cV PgV ĭnV pnV ?nV pnV lV "nV 'nV #nV #nV 0zV nV PV cV ܊ dV V nV =nV PV p V Q jV Q fV 1S ܊ `hV U1 ("݊ hV ֿ +܊ `iV ۊ iV | +܊ jV O| .݊ @kV m1 /݊ lV 0w@/݊ P fV ("݊ dV @V nV @@nV PV 8ɒmԁ jV Q dV pV nV 0CnV PV K&ߧ jV Q dV V nV BnV PV w jV Q dV @V nV >nV PV 0 dV O| send V 0kV dV dV XnV 8nV PV 0 PjV m1 throw m lV jV dV nV @DnV PV 0 kV 60w getReturn V 1 kV 0w getreturn T PoV 0kV dV nV ?nV PV 0 kV 7 /w generator V A `,V SV @ @ ]V 5(~ ClosedGeneratorException 1V OV V @V `oV sV ĭnV pV ?nV pnV zV @V @V `V znV PyV PV @ mV vR closedgeneratorexception $q zV lV ؒ zV Q ( ! empty( $robots['noimageindex'] ) ) { $robots['imageindex'] = null; // `max-image-preview` should set be to `none` when `noimageindex` is present. // Using `isset` rather than `! empty` here so that in the rare case of `max-image-preview` // being equal to an empty string due to filtering, its value would still be set to `none`. if ( isset( $robots['max-image-preview'] ) ) { $robots['max-image-preview'] = 'none'; } } if ( ! empty( $robots['nosnippet'] ) ) { $robots['snippet'] = null; } if ( ! empty( $robots['noindex'] ) ) { $robots['index'] = null; $robots['imageindex'] = null; $robots['noimageindex'] = null; $robots['archive'] = null; $robots['noarchive'] = null; $robots['snippet'] = null; $robots['nosnippet'] = null; $robots['max-snippet'] = null; $robots['max-image-preview'] = null; $robots['max-video-preview'] = null; } return $robots; } /** * Sorts the robots array. * * @param array $robots The robots array. * * @return array The sorted robots array. */ protected function sort_robots( $robots ) { \uksort( $robots, static function ( $a, $b ) { $order = [ 'index' => 0, 'noindex' => 1, 'follow' => 2, 'nofollow' => 3, ]; $ai = isset( $order[ $a ] ) ? $order[ $a ] : 4; $bi = isset( $order[ $b ] ) ? $order[ $b ] : 4; return ( $ai - $bi ); } ); return $robots; } }