2017 © Pedro Peláez
 

yii2-extension yii2-summernote

Yii2 Summernote widget. 基于https://github.com/marqu3s/yii2-summernote

image

iqianfang/yii2-summernote

Yii2 Summernote widget. 基于https://github.com/marqu3s/yii2-summernote

  • Wednesday, February 7, 2018
  • by sdqianfang
  • Repository
  • 0 Watchers
  • 0 Stars
  • 8 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

SNPlus Yii2 Summernote widget. Summernote v0.8.7 [仅适用于SNPlus]

Yii2 Summernote widget. Super simple WYSIWYG editor on Bootstrap, (*1)

Installation

Composer

The preferred way to install this extension is through Composer., (*2)

Either run, (*3)

php composer.phar require iqianfang/yii2-summernote

or add, (*4)

"iqianfang/yii2-summernote": "dev-master"

to the require section of your composer.json, (*5)

Usage

<?= $form->field($model, 'content')->widget(Summernote::className(), [
    'clientOptions' => [
        ...
    ]
]); ?>

or, (*6)

<?= Summernote::widget([
    'name' => 'editor_id',
    'clientOptions' => [
        ...
    ]
]); ?>

Uploading directly to Amazon S3

To upload images inserted into the editor to S3, you have to configure a few options., (*7)

<?= Summernote::widget([
    'uploadToS3' => true,
    'signEndpoint' => '/<controller>/sign-aws-request?v4=true',
    'bucket' => 'S3-BUCKET-NAME',
    //'folder' => '',
    'folder' => new \yii\web\JsExpression("function() { return $('#aFormFieldId').val() + '/'; }"),
    'maxFileSize' => 1024000,
    'expiration' => gmdate('Y-m-d\TH:i:s.000\Z', strtotime('+5 minutes')),
    'clientOptions' => [
        ...
    ]
]); ?>

Then, in your controller, configure an action as the signEndpoint to sign the POST request that will upload the image., (*8)

public function actions()
{
   return [
      'sign-aws-request' => [
          'class' => 'common\actions\SignAwsRequestAction',
          'clientPrivateKey' => 'AWS-KEY',
          'clientPrivateSecret' => 'AWS-SECRET',
          'expectedBucketName' => 'BUCKET-NAME',
          'expectedHostName' => 'BUCKET-NAME',
          'expectedMaxSize' => 'MAX-FILE-SIZE'
      ]
   ];
}

See clientOptions, (*9)

Original Author

Aleksandr Zelenin, e-mail: aleksandr@zelenin.me, (*10)

Updates by

João Marques, e-mail: joao@jjmf.com, (*11)

Updates by

iqianfang, (*12)

The Versions

07/02 2018

dev-master

9999999-dev https://github.com/iqianfang/yii2-summernote

Yii2 Summernote widget. 基于https://github.com/marqu3s/yii2-summernote

  Sources   Download

MIT

The Requires

 

by Joao Marques
by iqianfang

yii2 widget wysiwyg summernote

07/02 2018

1.0.0

1.0.0.0 https://github.com/iqianfang/yii2-summernote

Yii2 Summernote widget. 基于https://github.com/marqu3s/yii2-summernote

  Sources   Download

MIT

The Requires

 

by Joao Marques
by iqianfang

yii2 widget wysiwyg summernote

07/02 2018

1.0.1

1.0.1.0 https://github.com/iqianfang/yii2-summernote

Yii2 Summernote widget. 基于https://github.com/marqu3s/yii2-summernote

  Sources   Download

MIT

The Requires

 

by Joao Marques
by iqianfang

yii2 widget wysiwyg summernote