mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
13 lines
190 B
PHP
13 lines
190 B
PHP
<?php
|
|
|
|
namespace Espo\Controllers;
|
|
|
|
class Metadata extends \Espo\Core\Controllers\Base
|
|
{
|
|
|
|
public function actionRead($params, $data)
|
|
{
|
|
return $this->getMetadata()->getAll(true);
|
|
}
|
|
}
|