MarketforceInfo/Yii2-SendGrid ¶
First version of Yii widgets package was released.
The package provides extra Yii-specific widgets and utilities:
We are very pleased to announce that Yii Framework version 1.1.26 is released.
You can download it at yiiframework.com/download/.
GridView show sum of columns in footer
`
PHP
use yii\grid\DataColumn;
/**
I have a calls which help me display json directly in html table.
Json2Table::formatContent($json);
The code of Json2Table class is here
============================================
In India have Aadhar number an we may need to valid it a input.
So I created a validator for yii2
use yii\validators\Validator;
class TAadharNumberValidator extends Validator
{
public $regExPattern = '/^\d{4}\s\d{4}\s\d{4}$/';
public function validateAttribute($model, $attribute)
{
if (preg_match($this->regExPattern, $model->$attribute)) {
$model->addError($attribute, 'Not valid Aadhar Card Number');
}
}
}
yii2-cropper-bs5 ¶
Yii2 Image Cropper Input Widget for bootstrap 5
Translator package got minor version that includes enhanced version of SimpleMessageFormatter
from now deprecated yiisoft/translator-formatter-simple. This enhanced vesion is able to render plurals for English and replace tokens with modifiers (ignoring modifier logic).