Beispiel #1
0
# 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 Exponent; if
# not, write to:
#
# Free Software Foundation, Inc.,
# 59 Temple Place,
# Suite 330,
# Boston, MA 02111-1307  USA
#
# $Id: move_standalone.php,v 1.3 2005/04/03 07:57:14 filetreefrog Exp $
##################################################
if (!defined('PATHOS')) {
    exit('');
}
if ($user && $user->is_acting_admin == 1) {
    $sect = null;
    $sect->parent = $_GET['parent'];
    $form = section::moveStandaloneForm($sect);
    $form->meta('action', 'reparent_standalone');
    $form->meta('module', 'navigationmodule');
    $template = new template('navigationmodule', '_move_standalone');
    $template->assign('form_html', $form->toHTML());
    $template->output();
} else {
    echo SITE_403_HTML;
}