Registry::get()
\nn\t3::Registry()->get($extName = '', $path = '');
Get a value from the sys_registry table.
\nn\t3::Registry()->get( 'nnsite', 'lastRun' );
Copied!
| @return void
Source Code
public function get ( $extName = '', $path = '' )
{
$registry = GeneralUtility::makeInstance( CoreRegistry::class );
return $registry->get( $extName, $path );
}
Copied!