<?php
/*
MGB 0.6.x - OpenSource PHP and MySql Guestbook
Copyright (C) 2004 - 2011 Juergen Grueneisl - http://www.m-gb.org/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
// ================================= //
// load_template_admin.inc.php - 1.0 //
// ================================= //
//
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //
// get content of templates (general)
$content_header = file_get_contents("templates/default/general_admin/header.tpl");
$content_copyright = file_get_contents("templates/default/general_admin/copyright.tpl");
$content_footer = file_get_contents("templates/default/general_admin/footer.tpl");
$content_errormessage = file_get_contents("templates/default/general_admin/errormessage.tpl");
$content_scrolling_function = file_get_contents("templates/default/general_admin/scrolling_function.tpl");
// get content of templates
$content_admin = file_get_contents("templates/default/admin.tpl");
$content_navigation = file_get_contents("templates/default/navigation.tpl");
$content_login = file_get_contents("templates/default/login.tpl");
$content_login_ok = file_get_contents("templates/default/login_ok.tpl");
$content_settings = file_get_contents("templates/default/settings.tpl");
$content_activate = file_get_contents("templates/default/activate.tpl");
$content_deactivate = file_get_contents("templates/default/deactivate.tpl");
$content_delete = file_get_contents("templates/default/delete.tpl");
$content_edit = file_get_contents("templates/default/edit.tpl");
$content_spam = file_get_contents("templates/default/spam.tpl");
$content_smilies = file_get_contents("templates/default/smilies.tpl");
$content_smilies_single = file_get_contents("templates/default/smilies_single.tpl");
$content_smilies_single_new = file_get_contents("templates/default/smilies_single_new.tpl");
$content_dropbox_spam = file_get_contents("templates/default/dropbox_spam.tpl");
$content_dropbox_normal = file_get_contents("templates/default/dropbox_normal.tpl");
$content_edit_single = file_get_contents("templates/default/edit_single.tpl");
$content_edit_user = file_get_contents("templates/default/edit_user.tpl");
$content_edit_user_single = file_get_contents("templates/default/edit_user_single.tpl");
$content_edit_user_adduser = file_get_contents("templates/default/edit_user_adduser.tpl");
$content_version = file_get_contents("templates/default/version.tpl");
$content_lostpassword = file_get_contents("templates/default/lostpassword.tpl");
$content_lostpassword_sent = file_get_contents("templates/default/lostpassword_sent.tpl");
?>