diff --git a/app/edit/clip_options.php b/app/edit/clip_options.php new file mode 100644 index 0000000000..d6f90fea5d --- /dev/null +++ b/app/edit/clip_options.php @@ -0,0 +1,76 @@ + + Portions created by the Initial Developer are Copyright (C) 2008-2012 + the Initial Developer. All Rights Reserved. + + Contributor(s): + Mark J Crane + James Rose +*/ + +//includes + include "root.php"; + require_once "resources/require.php"; + require_once "resources/check_auth.php"; + +//check permissions + if (permission_exists('edit_view')) { + //access granted + } + else { + echo "access denied"; + exit; + } + +//add multi-lingual support + $language = new text; + $text = $language->get(); + +//prepare the header + $title = $text['title-manage-clips']; + require_once "header.php"; + +//show the content + echo "\n"; + echo ""; + echo "\n"; + echo ""; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "
".$text['label-selected-clip']."
"; + echo " "; + echo ""; + + echo ""; + echo " \n"; + echo " \n"; + echo " \n"; + echo " \n"; + echo " \n"; + echo "
 
"; + + echo "
"; + +//include footer + require_once "footer.php"; + +?> diff --git a/app/edit/clipoptions.php b/app/edit/clipoptions.php deleted file mode 100644 index 505f4a60d6..0000000000 --- a/app/edit/clipoptions.php +++ /dev/null @@ -1,68 +0,0 @@ - - Portions created by the Initial Developer are Copyright (C) 2008-2012 - the Initial Developer. All Rights Reserved. - - Contributor(s): - Mark J Crane - James Rose -*/ -include "root.php"; -require_once "resources/require.php"; -require_once "resources/check_auth.php"; -if (permission_exists('script_editor_view')) { - //access granted -} -else { - echo "access denied"; - exit; -} - -//add multi-lingual support - $language = new text; - $text = $language->get(); - -$title = $text['title-manage-clips']; -require_once "header.php"; - -echo "\n"; -echo ""; -echo "\n"; -echo ""; -echo "\n"; -echo "\n"; -echo "\n"; -echo "\n"; -echo "
".$text['label-selected-clip']."
"; -echo " "; -echo ""; - -echo ""; -echo " \n"; -echo " \n"; -echo " \n"; -echo " \n"; -echo " \n"; -echo "
 
"; - -echo "
"; - -require_once "footer.php"; -?> \ No newline at end of file