将我的 php/mysql 应用程序包装在 modx 中

发布于 2024-07-29 05:30:30 字数 287 浏览 11 评论 0原文

我编写了一个小型应用程序,该应用程序严重依赖于一系列 php 页面,其中根据用户的凭据显示和格式化 mysql 数据。

我不是从头开始滚动整个用户管理系统,而是考虑将这些文件放入 modx 页面并利用其用户管理功能来保护和限制这些页面和数据。

我的问题有两个,首先,从难度的角度来看,这有多聪明? 我已经完成了创建代码片段的测试,一切都显示正常,但是有没有更简单的方法来做到这一点?

其次,我如何获取 modx 的会话或登录数据并将其传递给我的应用程序,以便它知道谁登录了。

谢谢

I wrote a small app that relies heavily on a series of php pages in which mysql data is displayed and formatted, given the user's credentials.

Rather than rolling a whole user management system from scratch, im debating putting these files into modx pages and utilizing its usermanagement features to secure and restrict those pages and the data.

My question is 2 fold, first, how smart is this from a difficulty stand point? Ive done a test creating a snippet and everything shows up ok, but is there an easier way to do this?

Second, how can i take modx's session or login data and pass it to my app so it knows WHO is logged in.

Thanks

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

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

发布评论

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

评论(1

恏ㄋ傷疤忘ㄋ疼 2024-08-05 05:30:30

我对 modx 比较陌生,所以我不是评论它有多智能的最佳人选,尽管我个人对该方法没有任何问题。

您可以使用 modx API 获取登录用户的详细信息。

例如

// In the front end, returns an array of the logged in user's attributes.
$userInfo = $modx->db->getRow(
    $modx->db->select(
        "*", 
        $modx->db->getFullTableName('web_user_attributes'), 
        "`internalKey`=".$modx->getLoginUserID()
    )
);    

I relatively new to modx so I'm not the best person to comment on how smart it is, although I personally have no problem with the methodology.

You can get details of the logged in user using the modx API.

eg

// In the front end, returns an array of the logged in user's attributes.
$userInfo = $modx->db->getRow(
    $modx->db->select(
        "*", 
        $modx->db->getFullTableName('web_user_attributes'), 
        "`internalKey`=".$modx->getLoginUserID()
    )
);    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文