14 lines
290 B
PHP
14 lines
290 B
PHP
<?php
|
|
|
|
namespace app\helpers;
|
|
|
|
class AreaGrid extends CommonGrid {
|
|
|
|
public static function pid($departmentArray) {
|
|
return function($model) use ($departmentArray) {
|
|
return isset($departmentArray[$model->pid]) ? $departmentArray[$model->pid] : "";
|
|
};
|
|
}
|
|
|
|
}
|