1. Go to this page and download the library: Download letsjump/yii2-easy-ajax library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => \yii\gii\Module::class,
// uncomment the following to add your IP if you are not connecting from localhost.
'allowedIPs' => ['127.0.0.1', '::1', /** your IPs */],
'generators' => [
'crud' => [
'class' => 'letsjump\easyAjax\gii\crud\Generator',
'templates' => [ //setting for out templates
'yii2-easy-ajax' => '@vendor/letsjump/yii2-easy-ajax/gii/crud/default',
]
],
],
];
}
public function actionSaveMyModel()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
// your model validation and save logic...
return [
\letsjump\easyAjax\EasyAjax::modalClose(),
\letsjump\easyAjax\EasyAjax::reloadPjax(['#p0']),
\letsjump\easyAjax\EasyAjax::notifySuccess('Your model has been saved')
];
}
public function actionModal()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
\letsjump\easyAjax\EasyAjax::modal('This is the modal content', 'Modal title'),
];
}
public function actionCloseModal()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
\letsjump\easyAjax\EasyAjax::modalClose(),
];
}
public function actionNotify()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
\letsjump\easyAjax\EasyAjax::notifyInfo('This is an Info Notify!')
];
}
public function actionPjaxReload()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
\letsjump\easyAjax\EasyAjax::reloadPjax(['#p0'])
];
}
public function actionValidateForm()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
$contactForm = new ContactForm();
return [
\letsjump\easyAjax\EasyAjax::formValidation(['#contact-form' => \yii\widgets\ActiveForm::validate($contactForm)])
];
}
public function actionTab($id)
{
$date = new \DateTimeImmutable('now');
$content = [
'rome' => $date->setTimezone(new \DateTimeZone('Europe/Rome'))->format('l jS \of F h:i:s A'),
'london' => $date->setTimezone(new \DateTimeZone('Europe/London'))->format('l jS \of F h:i:s A'),
'new-york' => $date->setTimezone(new \DateTimeZone('America/New_York'))->format('l jS \of F h:i:s A'),
'calcutta' => $date->setTimezone(new \DateTimeZone('Asia/Calcutta'))->format('l jS \of F h:i:s A'),
];
if ( ! array_key_exists($id, $content)) {
throw new \yii\web\BadRequestHttpException('Your request is invalid');
}
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
\letsjump\easyAjax\EasyAjax::tab($id, '<p>' . $content[$id] . '</p>')
];
}
public function actionContentReplace()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
\letsjump\easyAjax\EasyAjax::contentReplace(['#time-placeholder' => date('d/m/Y H:i:s')])
];
}
public function actionConfirm()
{
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return [
\letsjump\easyAjax\EasyAjax::confirm('This will fire a growl. Ok?', \yii\helpers\Url::to(['site/notify']))
];
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.