示例#1
0
function aviators_utils_catch_template()
{
    if (get_query_var('aviators-utils') && get_query_var('export')) {
        $export = get_query_var('export');
        if ($export == 'theme-options') {
            $exporter = new AviatorsUtilsTOExport();
            $exporter->export();
        }
        if ($export == 'widget-logic') {
            $exporter = new AviatorsUtilsWLExport();
            $exporter->export();
        }
        die;
    }
}