car4s/addons/log/config.php
2022-06-04 17:38:43 +08:00

26 lines
666 B
PHP

<?php
return array(
0 =>
array(
'name' => 'level',
'title' => '日志级别',
'type' => 'selects',
'content' =>
array(
'log' => 'log',
'error' => 'error',
'notice' => 'notice',
'info' => 'info',
'debug' => 'debug',
'sql' => 'sql',
),
'value' => 'error',
'rule' => 'required',
'msg' => '',
'tip' => '',
'ok' => '',
'extend' => '',
),
);