yii2-content-tools ¶
ContentTools editor implementation for Yii 2.
ContentTools ¶
Check out ContentTools website http://getcontenttools.com for more information about the editor.
Installation ¶
Add the package to your composer.json:
{
"require": {
"bizley/contenttools": "^1.3"
}
}
and run composer update or alternatively run composer require bizley/contenttools
Usage ¶
1. The widget. ¶
Wrap any part of the content with `
<?php \bizley\contenttools\ContentTools::begin(); ?>and
<?php \bizley\contenttools\ContentTools::end(); ?>`
.
<?php \bizley\contenttools\ContentTools::begin(); ?>
This is the part of view that is editable.
<p>There are paragraphs</p>
<div>and more...</div>
<?php \bizley\contenttools\ContentTools::end(); ?>
You can use the widget multiple times on one page.
2. Backend. ¶
Yii 2 ContentTools saves content and uploaded images asynchronously and it requires some preparation on the backend side.
You have to create few controllers' actions:
- "upload new image" action,
- "rotate uploaded image" action,
- "insert & crop uploaded image" action,
- "save content" action.
Three first actions are already prepared if you don't want any special operations. You can find them in 'actions' folder.
- UploadAction - takes care of validating the uploaded images using \bizley\contenttools\models\ImageForm (jpg, png and gif images are allowed, maximum width and height is 1000px and maximum size is 2MB), images are saved in 'content-tools-uploads' folder accessible from web.
- RotateAction - takes care of rotating the uploaded image using Imagine library (through yii2-imagine required in the composer.json).
- InsertAction - takes care of inserting image into the content with optional cropping using Imagine library.
The default option for the image urls is:
'imagesEngine' => [
'upload' => '/site/content-tools-image-upload',
'rotate' => '/site/content-tools-image-rotate',
'insert' => '/site/content-tools-image-insert',
],
So if you don't want to change the 'imagesEngine' parameter add in your SiteController:
public function actions()
{
return [
'content-tools-image-upload' => \bizley\contenttools\actions\UploadAction::className(),
'content-tools-image-insert' => \bizley\contenttools\actions\InsertAction::className(),
'content-tools-image-rotate' => \bizley\contenttools\actions\RotateAction::className(),
];
}
The last "save content" action is not prepared because it depends on the business logic of your application. See Saving content part at the end of this file. Default configuration for this is:
'saveEngine' => [
'save' => '/site/save-content',
],
Options ¶
You can add options for the widget by passing the configuration array in the begin() method.
id ¶
default: `
null`
Identifier of the editable region (must be unique).
If left empty it is automatically set to 'contentToolsXXX' where XXX is the number of next widget.
page ¶
default: `
null`
Page identifier. If null it will be set to the current url.
tag ¶
default: `
'div'`
Tag that will be used to wrap the editable content.
dataName ¶
default: `
'name'`
Name of the data-* attribute that will store the identifier of editable region.
dataInit ¶
default: `
'editable'`
Name of the data-* attribute that will mark the region as editable.
options ¶
default: `
[]`
Array of html options that will be applied to editable region's tag.
imagesEngine ¶
default:
[
'upload' => '/site/content-tools-image-upload',
'rotate' => '/site/content-tools-image-rotate',
'insert' => '/site/content-tools-image-insert',
]
Array of the urls of the image actions OR `
false`
to switch off the default image engine (you will have to prepare js for handling images on your own).
saveEngine ¶
default:
[
'save' => '/site/save-content',
]
Array with the url of the content saving action OR `
false`
to switch off the default saving engine (you will have to prepare js for handling content saving on your own).
styles ¶
default: `
[]`
Array of styles that can be applied to the edited content.
Every style should be added in array like:
'Name of the style' => [
'class' => 'Name of the CSS class',
'tags' => [Array of the html tags this can be applied to] or 'comma-separated list of the html tags this can be applied to'
],
Example:
'Bootstrap Green' => [
'class' => 'text-success',
'tags' => ['p', 'h2', 'h1']
],
'tags' key is optional and if omitted style can be applied to every element.
language ¶
default: `
falseBoolean flag or language code of the widget translation. You can see the list of prepared translations in 'ContentTools/translations' folder.
falsemeans that widget will not be translated (default language is English).
true`
means that widget will be translated using the application language.
If this parameter is a string widget tries to load the translation file with the given name.
If it cannot be found and string is longer that 2 characters widget tries again this time with parameter shortened to 2 characters.
If again it cannot be found language sets back to default.
globalConfig ¶
default: `
true`
Boolean flag whether the configuration should be global.
Global configuration means that every succeeding widget ignores page, tag, dataName, dataInit, imagesEngine, saveEngine and language parameters
and sets them to be the same as in the first one. Also styles are added only if they've got unique names.
Actions callbacks ¶
The default js image callbacks assume the following action response:
{
'size': [image-width-in-px, image-height-in-px],
'url': image-url
}
with optional `
'alt'`
for insert-action. In case of any errors response should be:
{
'errors': [array-of-error-descriptions]
}
At the moment errors are only displayed in browser's console (user sees only the big transparent cross).
Saving content ¶
Action responsible for saving the content should expect the array of every page region data in pairs `
'region-identifier' => 'region-content'`
.
Typical structure could look like this:
[
'contentTools0' => '...', // HTML content of the contentTools0 region
'contentTools1' => '...', // HTML content of the contentTools1 region
'_csrf' => '...', // CRSF token value
'page' => '/site/index' // page identifier
]
Now you just need to validate and save the regions linked to the page with the given identifier.
Image not upload
i installed the yii2-content-tools, that was working good but not image upload, i think i miss some backend setting, pls give detailed doc
Re: Image not upload
I basically do not deal with image upload in this extension - this should be taken care of by the app developer. I've prepared example of image uploading that can be modified (UploadAction). If there are any errors there let me know.
The general idea of image uploading with ContentTools is given at http://getcontenttools.com/tutorials/handling-image-uploads
version 1.1.0
Package v1.1.0 has been released. Fixed bower paths and minor code cleaning.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.