每个用户在 TinyMCE 的 iBrowser 中都有自己的图像文件夹

发布于 2024-12-17 14:53:38 字数 151 浏览 1 评论 0原文

我使用 iBrowser 将图像上传到 TinyMCE 编辑器中。它使用 ilibs_dir 配置参数来设置存储图像的文件夹。我想将其与我拥有许多用户的网站集成。如何为每个用户设置不同的文件夹?我的用户 ID 存储在发出 TinyMCE 编辑器的 PHP 脚本中的 $userId 值中。

I use iBrowser to upload images into TinyMCE editor. It uses ilibs_dir config param to set folder where images will be stored. I would like to integrate it with my site that has many users. How can i set different folder of each users? I have my user ID stored in $userId value in my PHP script that emits the TinyMCE editor.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单身情人 2024-12-24 14:53:38

您不应该为每个用户创建不同的文件夹,而应该让 PHP 管理它。您可以/应该将图像存储在 1 个文件夹中,并将其保存到 MySQL 数据库,该图像来自哪个用户。然后,当 TinyMCE 请求图像时,让 php 检查用户是否拥有该图像,如果是,则提供该图像。

您可以提供给 TinyMCE 的图像列表也可以由 PHP 创建,并将 JSON 列表中的图像列表提供给 TinyMCE ( http://www.tinymce.com/wiki.php/Configuration:external_image_list_url

这样你就可以完全控制图像,而且也很多更安全。

编辑:为您提供了如何使用 PHP 创建列表的示例:

header("Content-type: text/javascript");
$js = 'var tinyMCEImageList = new Array(';
$images = array('image1' => 'http://www.example.com/image1.jpg', 'image2' => 'http://www.example.com/image2.jpg');
foreach ($images as $name => $url) {
    $js .= '["'.$name.'", "'.$url.'"],';
}
$js = rtrim($js, ',').');';
echo $js;

此输出文件应通过脚本文件作为 JavaScript 文件包含在网站中。

<script type="text/javascript" src="PATH TO PHP FILE WITH LIST" />

You should not create a different folder for each user, but instead let PHP manage it. You could/should store the images in 1 folder, and save it to a MySQL database which image is from which user. Then when TinyMCE requests an image, let php check if the user owns that image, and if so, give it.

The image list you can supply to TinyMCE can also be created by PHP, and supply the image list in JSON list to TinyMCE ( http://www.tinymce.com/wiki.php/Configuration:external_image_list_url )

This way you have total control over the images, and it is also much more secure.

edit: Got an example for you how to create the list with PHP:

header("Content-type: text/javascript");
$js = 'var tinyMCEImageList = new Array(';
$images = array('image1' => 'http://www.example.com/image1.jpg', 'image2' => 'http://www.example.com/image2.jpg');
foreach ($images as $name => $url) {
    $js .= '["'.$name.'", "'.$url.'"],';
}
$js = rtrim($js, ',').');';
echo $js;

This outputted file should be included in the website through a script file as a JavaScript file.

<script type="text/javascript" src="PATH TO PHP FILE WITH LIST" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文