<?php

/*  Copyright 2008 ICTA / Mr Pete (email : WPTuner at ICTA dot net)

	I have not yet chosen a license for this software.
	
	For now, if you have received specific written permission from me
	to use this software, then you are free to use it personally according
	to the terms I gave you. You may not redistribute it to others.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
wptuner_localize();
// Activate localization on admin/settings page
if (!function_exists('file_put_contents')) {
    // Backwards php4 compatibility
    function file_put_contents($filename, $data)
    {
        $f = @fopen($filename, 'w');
        if (!$f) {
            return false;
        } else {
            $bytes = fwrite($f, $data);
            fclose($f);
            return $bytes;
        }
    }
}
//
Пример #2
0
function wptuner_foot()
{
    global $wptunershow;
    wptuner_localize();
    $wptunershow->Show_All(1);
}