FluidTYPO3\Vhs\ViewHelpers\Resource\Record\AbstractRecordResourceViewHelper::getTable PHP Method

getTable() public method

public getTable ( ) : string
return string
    public function getTable()
    {
        $table = $this->arguments['table'];
        if (null === $table) {
            $table = $this->table;
        }
        if (true === empty($table) || false === is_string($table)) {
            throw new Exception('The "table" argument must be specified and must be a string.', 1384611336);
        }
        return $table;
    }