Fork me on GitHub

is_mvc_page

This simply returns a boolean signifying whether or not the current page is being rendered by a WP MVC-based plugin.

<?php
echo is_mvc_page() ? 'WP MVC page!' : 'Not a WP MVC page!';
?>