当前位置: 首页>>代码示例>>PHP>>正文


PHP Publication::getPaidTime方法代码示例

本文整理汇总了PHP中Publication::getPaidTime方法的典型用法代码示例。如果您正苦于以下问题:PHP Publication::getPaidTime方法的具体用法?PHP Publication::getPaidTime怎么用?PHP Publication::getPaidTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Publication的用法示例。


在下文中一共展示了Publication::getPaidTime方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Publication

$f_url_type = Input::Get('f_url_type', 'int');
$publicationObj = new Publication($f_publication_id);
if (Saas::singleton()->hasPermission("ManagePublicationSubscriptions")) {
    $f_time_unit = Input::Get('f_time_unit');
    $f_unit_cost = trim(Input::Get('f_unit_cost', 'float', '0.0'));
    $f_unit_cost_all_lang = trim(Input::Get('f_unit_cost_all_lang', 'float', '0.0'));
    $f_currency = trim(Input::Get('f_currency'));
    $f_paid = Input::Get('f_paid', 'int');
    $f_trial = Input::get('f_trial', 'int');
} else {
    if (isset($publicationObj)) {
        $f_time_unit = $publicationObj->getTimeUnit();
        $f_unit_cost = p($publicationObj->getUnitCost());
        $f_unit_cost_all_lang = p($publicationObj->getUnitCostAllLang());
        $f_currency = p(htmlspecialchars($publicationObj->getCurrency()));
        $f_paid = p($publicationObj->getPaidTime());
        $f_trial = p($publicationObj->getTrialTime());
    } else {
        $f_time_unit = 'D';
        $f_unit_cost = '';
        $f_unit_cost_all_lang = '';
        $f_currency = '';
        $f_paid = '';
        $f_trial = '';
    }
}
$f_comments_enabled = Input::Get('f_comments_enabled', 'checkbox', 'numeric');
$f_comments_article_default = Input::Get('f_comments_article_default', 'checkbox', 'numeric');
$f_comments_public_enabled = Input::Get('f_comments_public_enabled', 'checkbox', 'numeric');
$f_comments_public_moderated = Input::Get('f_comments_public_moderated', 'checkbox', 'numeric');
$f_comments_subscribers_moderated = Input::Get('f_comments_subscribers_moderated', 'checkbox', 'numeric');
开发者ID:nidzix,项目名称:Newscoop,代码行数:31,代码来源:do_edit.php


注:本文中的Publication::getPaidTime方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。