Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/croogo/croogo/tests/test_app/src/Model/Table/ThingsTable.php
<?php

namespace App\Model\Table;

use
Cake\ORM\Table;

class
ThingsTable extends Table
{

    public function
initialize(array $config)
    {
       
parent::initialize($config);

       
$this->addBehavior('Croogo/Core.Url', [
           
'url' => [
               
'controller' => 'Things',
               
'action' => 'view',
            ],
           
'pass' => [
               
'id',
            ]
        ]);
    }
}