You get all the tt_content data in the array:
$this->cObj->data
t
$uidOfCE = $this->cObj->data['uid'];
If you are using Extbase, of course, you need to get the content object first, namely:
$this->contentObj = $this->configurationManager->getContentObject();
debug($this->contentObj->data, "current tt_content data");
source
share