python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Delete all model queries in yii
AllAdjustments::deleteAll(['plan_year_id' => $plan_year_id, 'column_type' => array_keys($allAdjustment), 'is_auto' => $is_auto,
['NOT',['column_id'=>1]],
]);
...
Shubham Gupta
Votes: 0
Answers: 1
Unable to transfer data to views
To get a list of products, I created a model "ProductList"
namespace app\models;
use yii\helpers\Html;
use yii\db\ActiveRecord;
class ProductList extends ActiveRecord{
public static ...
Soject
Votes: 0
Answers: 1
Why is Yii 2 class autoloading not working?
I have Basic Project Template of Yii 2 installed and I'm trying to test autoloading of classes.
So I added a Test/Test.php file in root folder of the project:
<?php
namespace app\Test;
class Test...
LVX
Votes: 0
Answers: 1
Yii 2 Rule condition in RBAC
I am using Yii2 basic and RBAC. I have a scenario where admin creates various centers. Then admin create users and assigns the users to these centers. Each centers has multiple users. Now these users ...
Questions
Votes: 0
Answers: 1