diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index e2a92fdea..3c778dbc6 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -238,5 +238,18 @@ class PMA_Theme_Manager { } + + /** + * prints out preview for every theme + * + * @uses $this->themes + * @uses PMA_Theme::printPreview() + */ + function printPreviews() { + foreach ( $this->themes as $each_theme ) { + + $each_theme->printPreview(); + } // end 'open themes' + } } ?> \ No newline at end of file