Download the PHP package dan8551/yii2-remote-modal without Composer
On this page you can find all versions of the php package dan8551/yii2-remote-modal. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download dan8551/yii2-remote-modal
More information about dan8551/yii2-remote-modal
Files in dan8551/yii2-remote-modal
Package yii2-remote-modal
Short Description Yii2 Remote Modal
License BSD-3-Clause
Homepage https://github.com/dan8551/yii2-remote-modal
Informations about the package yii2-remote-modal
Yii2 Remote Modal
by dan8551
This extension enables the use of several types of modals in a simplify way and using ajax.
In order to add it to your project you have to download the archive or use the composer tool which is the preferred way.
In your composer.json file add the following line :
"dan8551/yii2-remote-modal":"*"
and run
composer update
In Controller
in your controller's actions (that you want to display in a modal), add the following code :
public function actionTest()
{
$request = \Yii::$app->request;
\Yii::$app->response->format = Response::FORMAT_JSON;
return [
'title'=> "Test Titre",
'content'=>"Test content", // for example: $this->renderAjax('view', [
// 'model' => $model,
// ]),
'footer'=> Html::button('Close',['class'=>'btn btn-default pull-left','data-dismiss'=>"modal"]).
Html::button('Save',['class'=>'btn btn-primary','type'=>"submit"])
];
}
In your view
At the beginning of your file
use dan8551\components\modal\RemoteModal;
The calling link would be
<a href="/site/test" role="XXXXXXXXXID">Test</a>
At the end of the view file, add this :
The available classes in options are :
- slide-right
- stick-up
- fill-in
- slide-up