BcBaserHelper::getContentModifiedDate PHP Метод

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

コンテンツ更新日を取得
public getContentModifiedDate ( string $format = 'Y/m/d H:i' ) : null | string
$format string
Результат null | string
    public function getContentModifiedDate($format = 'Y/m/d H:i')
    {
        $content = $this->getCurrentContent();
        if ($content['modified_date']) {
            return date($format, strtotime($content['modified_date']));
        } else {
            return '';
        }
    }