国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
849B

  1. <?php
  2. /**
  3. * 多媒体发送
  4. *
  5. * @version $Id: select_media_post.php 1 9:43 2010年7月8日Z tianya $
  6. * @package DedeBIZ.Dialog
  7. * @copyright Copyright (c) 2021, DedeBIZ.COM
  8. * @license https://www.dedebiz.com/license
  9. * @link https://www.dedebiz.com
  10. */
  11. include_once(dirname(__FILE__) . '/config.php');
  12. $cfg_softtype = $cfg_mediatype . "|mp4";
  13. $cfg_soft_dir = $cfg_other_medias;
  14. $bkurl = 'select_media.php';
  15. $uploadmbtype = "多媒体文件类型";
  16. if (empty($activepath)) {
  17. $activepath = '';
  18. $activepath = str_replace('.', '', $activepath);
  19. $activepath = preg_replace("#\/{1,}#", '/', $activepath);
  20. if (strlen($activepath) < strlen($cfg_other_medias)) {
  21. $activepath = $cfg_other_medias;
  22. }
  23. }
  24. require_once(dirname(__FILE__) . "/select_soft_post.php");