1

在 Vitaly 回答后更新并正常工作:)

我在一个开源项目中工作:https ://github.com/open-ecommerce/helptext

我正在尝试向 dektrium Yii2-user 模块添加字段。在 repo 中有一个关于如何向用户表添加额外字段的示例: https://github.com/dektrium/yii2-user/blob/master/docs/adding-new-field-to-user-model。 md但我无法使其与模块随附的配置文件表一起使用。

我正在使用 dmstr/yii2-cms-metapackage 中的以下存储库:

"dektrium/yii2-user": "^0.9.6",
"dektrium/yii2-rbac": "~0.2",

例如,我想在管理员的个人资料表单中添加一个新的字段调用“技能”,所以

我首先进行了迁移以将字段添加到表中

然后在 main.php 中定义了我自己的类的路径(我正在使用高级模板,但通过 phundamental 进行了简化)

    Yii::setAlias('@app', dirname(__DIR__).'/..');
    Yii::setAlias('@runtime', dirname(__DIR__).'/../../runtime');
    Yii::setAlias('@web', dirname(__DIR__).'/../web');
    Yii::setAlias('@webroot', dirname(__DIR__).'/web');
    Yii::setAlias('@root', '@app');

    $common = [
        'id' => 'app',
        'language' => '',
        'basePath' => dirname(__DIR__),
        'vendorPath' => '@app/../vendor',
        'runtimePath' => '@app/../runtime',
        'bootstrap' => [
            'log',
        ],
        'aliases' => [
            '@frontmedia' => '@app/media',        
            '@admin-views' => '@app/modules/backend/views',
        ],
        'components' => [
            'assetManager' => [
                // Note: For using mounted volumes or shared folders
                'dirMode' => YII_ENV_PROD ? 0777 : null,
                'bundles' => getenv('APP_ASSET_USE_BUNDLED') ?
                    require(__DIR__.'/gen/bundle-prod.php') :
                    [
                        // Note: if your asset bundle includes bootstrap, you can disable the default asset
                        #'yii\bootstrap\BootstrapAsset' => false,
                    ],
                'basePath' => '@app/../web/assets',
            ],
            'authManager' => [
                'class' => 'yii\rbac\DbManager',
            ],
            'cache' => [
                'class' => 'yii\caching\FileCache',
            ],
            'db' => [
                'class' => 'yii\db\Connection',
                'dsn' => getenv('DATABASE_DSN'),
                'username' => getenv('DATABASE_USER'),
                'password' => getenv('DATABASE_PASSWORD'),
                'charset' => 'utf8',
                'tablePrefix' => getenv('DATABASE_TABLE_PREFIX'),
                'enableSchemaCache' => YII_ENV_PROD ? true : false,
            ],
            'i18n' => [
                'translations' => [
                    '*' => [
                        'class' => 'yii\i18n\DbMessageSource',
                        'db' => 'db',
                        'sourceLanguage' => 'en',
                        'sourceMessageTable' => '{{%language_source}}',
                        'messageTable' => '{{%language_translate}}',
                        'cachingDuration' => 86400,
                        'enableCaching' => YII_DEBUG ? false : true,
                    ],
                ],
            ],
            'mailer' => [
                'class' => 'yii\swiftmailer\Mailer',
                //'viewPath'         => '@common/mail',
                // send all mails to a file by default. You have to set
                // 'useFileTransport' to false and configure a transport
                // for the mailer to send real emails.
                'useFileTransport' => YII_ENV_PROD ? false : true,
            ],
            // Note: enable db sessions, if multiple containers are running
            #'session' => [
            #    'class' => 'yii\web\DbSession'
            #],
            'settings' => [
                'class' => 'pheme\settings\components\Settings',
            ],
            'urlManager' => [
                'class' => 'codemix\localeurls\UrlManager',
                'enablePrettyUrl' => getenv('APP_PRETTY_URLS') ? true : false,
                'showScriptName' => getenv('YII_ENV_TEST') ? true : false,
                'enableDefaultLanguageUrlCode' => true,
                'baseUrl' => '/',
                'rules' => [
                    'docs/<file:[a-zA-Z0-9_\-\./]+>' => 'docs',
                    #'docs' => 'docs/default/index',
                ],
                'languages' => explode(',', getenv('APP_LANGUAGES')),
            ],
            'user' => [
                'class' => 'app\components\User',
                'enableAutoLogin' => true,
                'loginUrl' => ['/user/security/login'],
                'identityClass' => 'dektrium\user\models\User',
                'rootUsers' => ['admin'],
            ],
            'view' => [
                'theme' => [
                    'pathMap' => [
                        '@vendor/dektrium/yii2-user/views/admin' => '@app/views/user/admin',
                        '@yii/gii/views/layouts' => '@admin-views/layouts',
                    ],
                ],
            ],

        ],
        'modules' => [
            'backend' => [
                'class' => 'app\modules\backend\Module',
                'layout' => '@admin-views/layouts/main',
            ],
            'pages' => [
                'class' => 'dmstr\modules\pages\Module',
                'layout' => '@admin-views/layouts/main',
                'availableRoutes' => [
                    '/site/index' => '/site/index',
                ],
            ],
            'prototype' => [
                'class' => 'dmstr\modules\prototype\Module',
                'layout' => '@admin-views/layouts/box',
            ],
            'user' => [
                'class' => 'dektrium\user\Module',
                'modelMap' => [
                    'profile' => 'app\models\Profile',
                ],
                'layout' => '@app/views/layouts/container',
                'defaultRoute' => 'profile',
                'adminPermission' => 'user-module',
                'enableFlashMessages' => false,
            ],
            'rbac' => [
                'class' => 'dektrium\rbac\Module',
                'layout' => '@admin-views/layouts/box',
                'enableFlashMessages' => false,
            ],
            'settings' => [
                'class' => 'pheme\settings\Module',
                'layout' => '@admin-views/layouts/box',
                'accessRoles' => ['settings-module'],
            ],
            'translatemanager' => [
                'class' => 'lajax\translatemanager\Module',
                'root' => '@app/views',
                'layout' => '@admin-views/layouts/box',
                'allowedIPs' => ['*'],
                'roles' => ['translate-module'],
            ],
            'gridview' => [
                'class' => '\kartik\grid\Module',
                // enter optional module parameters below - only if you need to  
                // use your own export download action or custom translation 
                // message source
                'downloadAction' => 'gridview/export/download',
            //'i18n' => [],           
            ],        
            'treemanager' => [
                'class' => '\kartik\tree\Module',
                'layout' => '@admin-views/layouts/main',
                'treeViewSettings' => [
                    'nodeView' => '@vendor/dmstr/yii2-pages-module/views/treeview/_form',
                    'fontAwesome' => true,
                ],
            ],
        ],
        'params' => [
            'adminEmail' => getenv('APP_ADMIN_EMAIL'),
            'yii.migrations' => [
                getenv('APP_MIGRATION_LOOKUP'),
                '@yii/rbac/migrations',
                '@dektrium/user/migrations',
                '@vendor/lajax/yii2-translate-manager/migrations',
                '@vendor/pheme/yii2-settings/migrations',
                '@vendor/dmstr/yii2-prototype-module/src/migrations',
            ],
        ],

    ];

    $web = [
        'components' => [
            'errorHandler' => [
                'errorAction' => 'site/error',
            ],
            // Logging
            'log' => [
                'targets' => [
                    // writes to php-fpm output stream
                    [
                        'class' => 'codemix\streamlog\Target',
                        'url' => 'php://stdout',
                        'levels' => ['info', 'trace'],
                        'logVars' => [],
                        'enabled' => YII_DEBUG,
                    ],
                    [
                        'class' => 'codemix\streamlog\Target',
                        'url' => 'php://stderr',
                        'levels' => ['error', 'warning'],
                        'logVars' => [],
                    ],
                ],
            ],
            'request' => [
                // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
                'cookieValidationKey' => getenv('APP_COOKIE_VALIDATION_KEY'),
            ],
            'user' => [
                'identityClass' => 'dektrium\user\models\User',
                //'admins' => ['admin'],
            ],
        ],
    ];

    $console = [
        'controllerNamespace' => 'app\commands',
        'controllerMap' => [
            'db' => 'dmstr\console\controllers\MysqlController',
            'migrate' => 'dmstr\console\controllers\MigrateController',
            'translate' => '\lajax\translatemanager\commands\TranslatemanagerController',
        ],
        'components' => [

        ],
    ];

    $allowedIPs = [
        '127.0.0.1',
        '::1',
        '192.168.*',
        '172.17.*',
    ];

// detecting current application type based on `php_sapi_name()` since we've no application ready yet.
if (php_sapi_name() == 'cli') {
    // Console application
    $config = \yii\helpers\ArrayHelper::merge($common, $console);
} else {
    // Web application
    if (YII_ENV_DEV) {
        // configuration adjustments for web 'dev' environment
        $common['bootstrap'][] = 'debug';
        $common['modules']['debug'] = [
            'class' => 'yii\debug\Module',
            'allowedIPs' => $allowedIPs,
        ];
    }
    $config = \yii\helpers\ArrayHelper::merge($common, $web);
}

if (YII_ENV_DEV || YII_ENV_TEST) {
    // configuration adjustments for 'dev' environment
    $config['bootstrap'][] = 'gii';
    $config['modules']['gii'] = [
        'class' => 'yii\gii\Module',
        'allowedIPs' => $allowedIPs,
    ];

    $giiant = require __DIR__.'/giiant.php';
    $config = \yii\helpers\ArrayHelper::merge($config, $giiant);
}

if (file_exists(getenv('APP_CONFIG_FILE'))) {
    // Local configuration, if available
    $local = require getenv('APP_CONFIG_FILE');
    $config = \yii\helpers\ArrayHelper::merge($config, $local);
}

return $config;

这是调用 models/Profile.php 类

namespace app\models;

use Yii;

use dektrium\user\models\Profile as BaseProfile;

class Profile extends BaseProfile
{

    public function scenarios()
    {
        $scenarios = parent::scenarios();

        // add skils to scenarios
        $scenarios['create'][]   = 'skills';
        $scenarios['update'][]   = 'skills';
        $scenarios['register'][] = 'skills';


        return $scenarios;
    }

    public function rules()
    {
        $rules = parent::rules();

        // add skills rules
        $rules['skillsRequired'] = ['skills', 'required'];
        $rules['skillsLength']   = ['skills', 'string', 'max' => 255];

        return $rules;
    }

    /** @inheritdoc */
    public function attributeLabels()
    {
        return [
            'skills' => Yii::t('userextended', 'This are the skills'),
        ];
    }

    /**
     * @return \yii\db\ActiveQueryInterface
     */
    public function getAccount()
    {
        return $this->hasOne($this->module->modelMap['Account'], ['user_id' => 'user_id']);
    }

    /**
     * @return \yii\db\ActiveQueryInterface
     */
    public function getAccountAttributes()
    {
        return $this->hasOne($this->module->modelMap['Account'], ['user_id' => 'user_id'])->asArray()->one();
    }

}

然后在views/user/admin/_profile.php

<?php

/*
 * This file is part of the Dektrium project
 *
 * (c) Dektrium project <http://github.com/dektrium>
 *
 * For the full copyright and license information, please view the LICENSE.md
 * file that was distributed with this source code.
 */

use yii\bootstrap\ActiveForm;
use yii\helpers\Html;

/**
 * @var yii\web\View                    $this
 * @var dektrium\user\models\User       $user
 * @var dektrium\user\models\Profile    $profile
 */

?>

<?php $this->beginContent('@dektrium/user/views/admin/update.php', ['user' => $user]) ?>

<?php $form = ActiveForm::begin([
    'layout' => 'horizontal',
    'enableAjaxValidation' => true,
    'enableClientValidation' => false,
    'fieldConfig' => [
        'horizontalCssClasses' => [
            'wrapper' => 'col-sm-9',
        ],
    ],
]); ?>

<?= $form->field($profile, 'name') ?>
<?= $form->field($profile, 'public_email') ?>
<?= $form->field($profile, 'website') ?>
<?= $form->field($profile, 'location') ?>
<?= $form->field($profile, 'gravatar_email') ?>
<?= $form->field($profile, 'bio')->textarea() ?>
<?= $form->field($profile, 'skills')->textarea() ?>


<div class="form-group">
    <div class="col-lg-offset-3 col-lg-9">
        <?= Html::submitButton(Yii::t('user', 'Update'), ['class' => 'btn btn-block btn-success']) ?>
    </div>
</div>

<?php ActiveForm::end(); ?>

<?php $this->endContent() ?>

我没有收到错误,但该字段未更新表格。

如果我直接在数据库中填充该字段,我可以在表单中看到该值,但它不会在更新时改变

任何帮助都超过欢迎

4

1 回答 1

2

将其更改'User' => 'app\models\Profile''Profile' => 'app\models\Profile'

于 2016-06-24T05:30:50.797 回答