Storage::getPid() 

\nn\t3::Storage()->getPid($extName = NULL); 

Im Controller: Aktuelle StoragePid für ein PlugIn holen. Alias zu \nn\t3::Settings()->getStoragePid()

\nn\t3::Storage()->getPid();
\nn\t3::Storage()->getPid('news');
Copied!

| @return string

Source Code 

public function getPid ( $extName = null )
{
	return \nn\t3::Settings()->getStoragePid( $extName );
}
Copied!