"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tiny.php 783B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. * Made by DFiNE (Kenneth Hedahl)
  4. * Copyright DIS (www.dfine.net)
  5. * -----------------------------
  6. */
  7. mb_internal_encoding("utf-8"); // Internal encoding set to UTF-8, should fix some charset issues.
  8. session_start(); // Start PHP session, so we can handle session-data on all pages.
  9. require_once("../include.php"); // Our includes.
  10. if (isset($_SESSION['user'])) {
  11. if (User::checkLevel("75")) {
  12. ?>
  13. tinymce.init({
  14. selector: '.editor',
  15. plugins: 'image',
  16. toolbar: "undo redo | styleselect | bold italic | image | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent",
  17. menubar: false,
  18. images_upload_url: 'handleUpload.php',
  19. height: '400px'
  20. });
  21. <?php
  22. }
  23. }