web-dev-qa-db-ja.com

OctoberCMSプラグイン拡張機能のフィールドを使用してカスタムユーザー登録フォームを作成する方法

私はOctoberCMSを学ぼうとしていますが、プラグインを拡張する完全なプロセスについて混乱しています。スクリーンキャストに従ってユーザープラグインを拡張しました( https://vimeo.com/108040919 )。最終的には、ユーザーカテゴリを格納する「カテゴリ」という新しいフィールドを作成したいと考えています。新しいページに、電子メールアドレスのみに基づいて新しいユーザーを登録するために使用しようとしている次のフォームがあります。 「カテゴリ」は、登録元のページに基づいて入力され、パスワードは自動的に生成されるため、ユーザーは電子メールのアクティベーションリンクからアカウントを確認したときにパスワードを設定できます。私のプラグインは「プロファイル」と呼ばれています。

私のplugin.phpファイルは次のようになります:

<?php namespace Sser\Profile;

use System\Classes\PluginBase;
use RainLab\User\Models\User as UserModel;
use RainLab\User\Controllers\Users as UsersController;
use Sser\Profile\Models\Profile as ProfileModel;
/**
 * Profile Plugin Information File
 */
class Plugin extends PluginBase
{

    /**
     * Returns information about this plugin.
     *
     * @return array
     */
    public function pluginDetails()
    {
        return [
            'name'        => 'Profile',
            'description' => 'Handles user demographic information',
            'author'      => '',
            'icon'        => 'icon-leaf'
        ];
    }

    public function boot()
    {
        UserModel::extend(function($model){
            $model->hasOne['profile'] = ['Sser\Profile\Models\Profile'];
        });
        // $user->profile->Zip

        UserModel::deleting(function($user) {
            $user->profile->delete();
        });

        UsersController::extendFormFields(function($form,$model,$context){
            if(!$model instanceof UserModel)
            {
                return;
            }
            if(!$model->exists)
            {
                return;
            }
            //Ensures that a profile model always exists...
            ProfileModel::getFromUser($model);

            $form->addTabFields([
                'profile[age]'=>[
                    'label'=>'Age',
                    'tab'=>'Profile',
                    'type'=>'number'
                ],
                'profile[gender]'=>[
                    'label'=>'Gender',
                    'tab'=>'Profile',
                    'type'=> 'dropdown',
                    'options'=>array('male'=>'Male',
                                     'female'=>'Female')

                ],
                'profile[category]'=>[
                    'label'=>'Category',
                    'tab'=>'Profile',
                    'type'=> 'dropdown',
                    'options'=>array('sink'=>'SINK',
                                     'dink'=>'DINK')
                ],
                'profile[vag]'=>[
                    'label'=>'VAG',
                    'tab'=>'Profile',
                    'type'=> 'dropdown',
                    'options'=>array('v'=>'V',
                                     'a'=>'A',
                                     'g'=>'G')
                ]
            ]);
        });
    }

}

私のprofile.phpファイルは次のようになります:

<?php namespace Sser\Profile\Models;

use Model;
use \October\Rain\Database\Traits\Validation;

/**
 * Profile Model
 */
class Profile extends Model
{
    public $rules = [
        'category' => ['required', 'min:0']
    ];

    /**
     * @var string The database table used by the model.
     */
    public $table = 'sser_profile_profiles';

    /**
     * @var array Guarded fields
     */
    protected $guarded = ['*'];

    /**
     * @var array Fillable fields
     */
    protected $fillable = [];

    /**
     * @var array Relations
     */
    public $hasOne = [];
    public $hasMany = [];
    public $belongsTo = [
        'user'=> ['RainLab\User\Models\User']
    ];
    public $belongsToMany = [];
    public $morphTo = [];
    public $morphOne = [];
    public $morphMany = [];
    public $attachOne = [];
    public $attachMany = [];

    public static function getFromUser($user)
    {
        if($user->profile)
        {
            return $user->profile;
        }

        $profile = new static;
        $profile->user = $user;
        $profile->save();

        $user->profile = $profile;

        return $profile;
    }

}

次のようなユーザー登録フォームを作成しようとしています。

<form class="flexiContactForm col s12" role="form" data-request="{{ __SELF__ }}::onSignup" data-request-update="'{{ __SELF__ }}::confirm': '.confirm-container'">;
    <button id="signup_button" class="waves-effect waves-light btn" style="float:right;" type="submit">Sign Up</button>
    <div style="overflow: hidden; padding-right:0em;">
    <input id="signup_email" type="email" class="validate" name="email">            
    <label id="signup_email_label" for="signup_email" data-error="" data-success="">Email Address</label>
    <input type="hidden" name="category" value="{{ data.category }}"/>
    </div>
</form>

私が混乱しているのは、基本的にユーザープラグインの「onRegister」コンポーネントの機能を拡張し、自動的にパスワードを生成し、「category」フィールドを保存する「onSignup」コンポーネントを作成する方法です。誰かが例を提供したり、この例を示すページへのリンクを提供できますか?ありがとう。

15
user2694306

さて、私は自分のサイトのためにこのようなことをしなければなりませんでした。だから私はあなたが持っている2つのオプションを説明しようとします。
1:テーマとページphpを使用してものをオーバーライドします。

  1. フォームを上書きします。これを行うには、register.htmをplugins/rainlabs/user/components/account /register.htmからthemes/site-theme/partials/account /register.htmにコピーします。これで、フォームを更新して、必要なフィールドを含めることができます。

  2. アカウントのログイン/登録ページで、phpセクションにphpを入力して、デフォルトのonRegister()関数をオーバーライドします。

    title = "Account"
    url = "/account/:code?"
    layout = "default"
    description = "The account page"
    is_hidden = 0
    
    [account]
    redirect = "home"
    paramCode = "code"
    
    [session]
    security = "all"
    ==
    function onRegister()
    {
        try {
            //Do Your Stuff (generate password, category)
            //Inject the variables
            return $this->account->onSignin();
        }
        catch (Exception $ex) {
            Log::error($ex);
        }
    } 
    ==
    

2:すべてを実行するコンポーネントを作成します。これは私が行くことになった方法です

  1. php artisan create:component Foo.Bar AccountExtendを使用して、コンポーネントを作成します
  2. 次に、コンポーネントに移動して、いくつかの変更を加えます。まず、すべてのファイルをplugins/rainlabs/user/components/account /からplugins/Foo/Bar/components/accountextend /にコピーする必要があります。
  3. 次に、コンポーネントAccountExtend.phpを更新する必要があります。まず、正しく機能させるためのいくつかの変更(すべてのコードを含めたわけではなく、変更が必要なものだけを含めました):

    use RainLab\User\Components\Account as UserAccount;
    
    class AccountExtend extends UserAccount
    
  4. 次に、プラグインのPlugin.phpファイルを更新して、コンポーネントをアクティブ化します。

        public function registerComponents()
        {
            return [
               'Foo\Bar\Components\AccountExtend' => 'account',
            ];
        }
    
  5. これで、onRegister()関数をAccountExtend.phpに追加できます。

        public function onRegister() {
            //Do anything you need to do
    
            $redirect = parent::onRegister();
    
            $user = $this->user(); // This is the user that was just created, here for example, dont need to assign it really
            // Now you can do stuff with any of the variables that were generated (such as user above)
    
           // Return the redirect so we redirect like normal
           return $redirect;
      }
    
5
Fooldj

それは間違いなく紛らわしいです。ガイドとしてのUserPlusプラグインと、国/州のドロップダウンを追加するための場所プラグイン(必須)をご覧ください。

  1. ユーザーの「category_id」のようなものを追加するには、「updates/migrations」を使用して新しいテーブルを追加するか、ユーザーのテーブルにフィールドを追加する必要があります。それはあなたのためにそれを保存します。

  2. ユーザーの作成によりモデルにフォームデータが入力されるため、これが入力可能に設定されていることを確認してください。入力しないと保存されません。これは起動時です。ユーザーのplusプラグインにこれ​​があるので、チェックしてください。

  3. カテゴリ用の新しいテーブルを作成し、リストをフェッチできるコンポーネントパーツを作成します。これについてはlocationsプラグインを参照してください...データをフェッチする部分/リストをシードする部分はコンポーネントにあります。

  4. 新しいコンポーネントをパーシャルにするか、cmsパーシャルで新しいフィールドを指定して使用する必要があります。

パスワードをランダムにする限り、100%が最善の方法ではありませんが、コンポーネントにonInitを使用して、フォームの投稿データにパスワードをシードすることができます。ユーザーのプラグインが投稿フィールドをモデルに渡すため、パスワードフィールドを投稿データに追加する必要があります(そのため、category_idを入力可能として設定する必要があります。そうしないと、セキュリティ上の理由でブロックされます)。

私は自分でこのようなものをいじっていて、ユーザーに加えてロケーションプラグインが大いに役立ちました。

申し訳ありませんが、これ以上詳しく説明することはできませんでした。

2
Eric Kelly