PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/mytube.pm/wp-content/plugins/wp-simple-firewall/src/lib/src/Scans/Wpv/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/mytube.pm/wp-content/plugins/wp-simple-firewall/src/lib/src/Scans/Wpv/ResultsSet.php |
<?php namespace FernleafSystems\Wordpress\Plugin\Shield\Scans\Wpv; use FernleafSystems\Wordpress\Plugin\Shield\Scans\Base; /** * Class ResultsSet * @property ResultItem[] $items * @package FernleafSystems\Wordpress\Plugin\Shield\Scans\Wpv */ class ResultsSet extends Base\ResultsSet { /** * @return int */ public function countUniqueSlugs() { return count( $this->getAllResultsSetsForUniqueSlugs() ); } public function countUniqueSlugsForPluginsContext() :int { return count( $this->getAllResultsSetsForPluginsContext() ); } /** * @return int */ public function countUniqueSlugsForThemesContext() { return count( $this->getAllResultsSetsForThemesContext() ); } /** * Provides a collection of ResultsSets for Plugins. * @return ResultsSet[] */ public function getAllResultsSetsForPluginsContext() :array { return $this->getAllResultsSetsForContext( 'plugins' ); } /** * Provides a collection of ResultsSets for Themes. * @return ResultsSet[] */ public function getAllResultsSetsForThemesContext() :array { return $this->getAllResultsSetsForContext( 'themes' ); } /** * @param string $sContext * @return ResultsSet[] */ public function getAllResultsSetsForContext( $sContext ) :array { $aCollection = []; foreach ( $this->getAllResultsSetsForUniqueSlugs() as $sSlug => $oRS ) { if ( $oRS->getItems()[ 0 ]->context == $sContext ) { $aCollection[ $sSlug ] = $oRS; } } return $aCollection; } /** * @return ResultsSet[] */ public function getAllResultsSetsForUniqueSlugs() { $aCollection = []; foreach ( $this->getUniqueSlugs() as $sSlug ) { $oRS = $this->getResultsSetForSlug( $sSlug ); if ( $oRS->hasItems() ) { $aCollection[ $sSlug ] = $oRS; } } ksort( $aCollection, SORT_NATURAL ); return $aCollection; } /** * @param string $sSlug * @return ResultItem[] */ public function getItemsForSlug( $sSlug ) { return array_values( array_filter( $this->getItems(), function ( $oItem ) use ( $sSlug ) { /** @var ResultItem $oItem */ return $oItem->slug == $sSlug; } ) ); } /** * @param string $sSlug * @return ResultsSet */ public function getResultsSetForSlug( $sSlug ) { $oRes = new ResultsSet(); array_map( function ( $oItem ) use ( $oRes ) { /** @var ResultItem $oItem */ $oRes->addItem( $oItem ); }, $this->getItemsForSlug( $sSlug ) ); return $oRes; } /** * @return string[] */ public function getUniqueSlugs() { return array_unique( array_map( function ( $oItem ) { /** @var ResultItem $oItem */ return $oItem->slug; }, $this->getItems() ) ); } }