BcBaserHelper::getContentCreatedDate PHP Method

getContentCreatedDate() public method

コンテンツ作成日を取得
public getContentCreatedDate ( $format = 'Y/m/d H:i' ) : null | string
return null | string
    public function getContentCreatedDate($format = 'Y/m/d H:i')
    {
        $content = $this->getCurrentContent();
        if ($content['created_date']) {
            return date($format, strtotime($content['created_date']));
        } else {
            return '';
        }
    }