示例#1
0
<?php

Event::listen('inline-post-text', function ($post) {
    if (!empty($post->text) and !isEnglish($post->text)) {
        echo Theme::section('autotranslator::link', ['post' => $post]);
    }
});
示例#2
0
文件: f_common.php 项目: VSG24/ccms
function LBDP($row)
{
    if ($row == null || $row == '0000-00-00 00:00:00') {
        return '-';
    }
    if (isEnglish()) {
        return dateToGreg($row, '/', false);
    } else {
        return dateToJalali($row, '/', !isEnglish());
    }
}