mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-18 07:18:43 +02:00
12 lines
212 B
PHP
Executable File
12 lines
212 B
PHP
Executable File
<?php
|
|
/**
|
|
* Abstract output class for HTML pages.
|
|
*
|
|
* @package query-monitor-extend
|
|
*/
|
|
|
|
abstract class QMX_Output_Html extends QM_Output_Html {
|
|
|
|
public function panel_menu( array $menu ) { return $menu; }
|
|
|
|
} |