1. Go to this page and download the library: Download dd174/yii2-related-behavior 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/ */
private $formName;
/**
* @param null $unique необходим для получения доступа к файлам ($_FILES) в новой моделе
*/
public function setFormName($unique = null)
{
$unique = $unique ?: ($this->primaryKey ?: uniqid('new', true));
$this->formName = parent::formName() . '[' . $unique . ']';
}
/**
* Составляем свое name, что бы легко использовать на одной странице форму с несколькими экземплярами этой модели
* @return string
*/
public function formName()
{
if (!$this->formName) {
$this->setFormName();
}
return $this->formName;
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.