1

I've got a yii CRUD created using gii and I would like to integrate it into WP admin's section.

I've seen a few tutorials that revolve around integrating Wordpress into yii's controller/router but since my app is really small and my WP is already working I would like to do the opposite. So basically what I would like to do is integrate WP authentication into yii's module.

Are there any tutorials on how to do this? What would be the cleanest and simplest way?

4

2 回答 2

1

您可以使用 WPUser 之类的东西扩展 CWebUser,唯一必要的功能是 getIsGuest 和 getName 或类似的东西。

因此,您基本上可以像使用普通 CWebUser 一样构建您的所有身份验证,但对 wp_-functions 做一些令人费解的事情以使一切正常。

基本上这些功能; http://codex.wordpress.org/Function_Reference/wp_get_current_user http://codex.wordpress.org/Class_Reference/WP_User

使用 WP_User 您可以模拟 yii 用户和 RBAC 等,查看 IWebUser 以了解您的用户类需要工作:http ://www.yiiframework.com/doc/api/1.1/IWebUser

要在 wordpress 中包含 yii,您唯一需要做的就是制作一个模板并将 /yii-app/index.php 包含在内容中,一切都会正常运行。

这有点短,因为我很着急。如果您需要更多帮助,我可以在明天左右返回我为这样的项目编写的代码。

于 2013-04-29T21:29:48.093 回答
0

这是一个简单的类,它将 WordPress 的 API 包装到 Yii 的基于角色的身份验证管理器中 - 在您的控制器中,您将指定要检查的“角色”(也称为 WordPress 功能)。

<?php public function accessRules()
{
    return array(
        array('allow',
            'actions'=>array('index','view'),
            'roles'=>array('publish_posts') 
            //WordPress capability check. 
            //  See @link http://codex.wordpress.org/Roles_and_Capabilities
        ),
 }
 ?>

这是您的新 User 类,需要在您的 Yii 配置文件中的 components => user => class = 'wpUser' 部分中添加。这将替换 Yii 的默认 CWebUser(未在配置数组中指定 - 默认加载)。另外-您需要从数组中删除“allowAutoLogin”=> true。

<?php
class wpUser extends CApplicationComponent implements IWebUser, IApplicationComponent {
        public function init ()
        {
            parent::init();
        }
        function checkAccess ($operation, $params = array()) {
            return current_user_can($operation);
        }
        function getId() {
            return get_current_user_id();
        }
        function getIsGuest () {
            $is_user_logged_in = is_user_logged_in();
            return ! $is_user_logged_in;
        }
        function getName () {
            $name = wp_get_current_user()->user_login;
            return $name;
        }
        public function loginRequired()
        {
            wp_login_form(array('redirect' => Yii::app()->getRequest()->getUrl()));
        }
    }
?>

发表在 Yii 的 Wiki 上

于 2013-11-26T01:58:15.743 回答