mirror of
https://github.com/brmlab/brmsklad.git
synced 2025-08-02 06:13:35 +02:00
11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
class ItemsController extends AppController {
|
|
|
|
public $scaffold;
|
|
public $paginate = array(
|
|
'limit' => 1000,
|
|
'maxLimit' => 1000
|
|
);
|
|
|
|
}
|