Pimcore\Model\Document\Printcontainer\Dao::getLastedChildModificationDate PHP Метод

getLastedChildModificationDate() публичный Метод

    public function getLastedChildModificationDate()
    {
        $path = $this->model->getFullPath();
        return $this->db->fetchOne("SELECT modificationDate FROM documents WHERE path LIKE ? ORDER BY modificationDate DESC LIMIT 0,1", [$path . "%"]);
    }