mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-06 23:39:02 +01:00
16 lines
350 B
PHP
16 lines
350 B
PHP
<?php
|
|
|
|
use yii\widgets\ListView;
|
|
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*
|
|
* @var array|object $model
|
|
* @var string $key
|
|
* @var int $index
|
|
* @var ListView $widget
|
|
*/
|
|
echo "Item #{$index}: {$model['login']} - Widget: " . get_class($widget);
|