/home/vianto5/ceibaresidencial.mx/wp-content/plugins/query-monitor/classes
NameSizeModeActions
Activation.php30380644editdlrm
ArrayAccess.php11050644editdlrm
Backtrace.php228870644editdlrm
Backtrace_Frame.php8700644editdlrm
CLI.php15680644editdlrm
Collector.php87070644editdlrm
Collectors.php34450644editdlrm
Collector_Assets.php145000644editdlrm
Component.php38660644editdlrm
Component_Altis_Vendor.php3560644editdlrm
Component_Core.php2630644editdlrm
Component_Dropin.php3460644editdlrm
Component_MU_Plugin.php3330644editdlrm
Component_MU_Vendor.php3420644editdlrm
Component_Other.php1700644editdlrm
Component_PHP.php2210644editdlrm
Component_Plugin.php3240644editdlrm
Component_Stylesheet.php3410644editdlrm
Component_Template.php2780644editdlrm
Component_Unknown.php8660644editdlrm
Component_VIP_Plugin.php3460644editdlrm
Data.php4280644editdlrm
DataCollector.php3960644editdlrm
DB.php15460644editdlrm
debug_bar.php17130644editdlrm
debug_bar_panel.php14460644editdlrm
Deprecated_Argument_Run.php10350644editdlrm
Deprecated_Class_Run.php9660644editdlrm
Deprecated_Constructor_Run.php11440644editdlrm
Deprecated_File_Included.php10950644editdlrm
Deprecated_Function_Run.php9830644editdlrm
Deprecated_Hook_Run.php10980644editdlrm
Dispatcher.php50970644editdlrm
Dispatchers.php12410644editdlrm
Doing_It_Wrong_Run.php8920644editdlrm
Frame_Registry.php14560644editdlrm
Hook.php13790644editdlrm
Output.php9230644editdlrm
PHP.php13970644editdlrm
Plugin.php24000644editdlrm
QM.php44510644editdlrm
QueryMonitor.php87050644editdlrm
Timer.php33260644editdlrm
Util.php199010644editdlrm
Wrong.php8220644editdlrm
Edit: /home/vianto5/ceibaresidencial.mx/wp-content/plugins/query-monitor/classes/Frame_Registry.php (1456B)
*/ private static $index = array(); /** * Ordered list of unique frames. * * @var list */ private static $frames = array(); /** * Register a frame (without line number) and return its index. */ public static function register( QM_Data_Stack_Frame $frame ): int { $key = $frame->id . "\0" . ( $frame->args ?? '' ) . "\0" . ( $frame->file ?? '' ); if ( isset( self::$index[ $key ] ) ) { return self::$index[ $key ]; } $count = count( self::$frames ); $lookup_frame = new QM_Data_Stack_Frame(); $lookup_frame->id = $frame->id; $lookup_frame->file = $frame->file; if ( $frame->args !== null ) { $lookup_frame->args = $frame->args; } else { unset( $lookup_frame->args ); } unset( $lookup_frame->line ); self::$frames[] = $lookup_frame; self::$index[ $key ] = $count; return $count; } public static function get_frame( int $index ): QM_Data_Stack_Frame { return self::$frames[ $index ]; } /** * @return list */ public static function get_frames(): array { return self::$frames; } }