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


PHP Translatable::creating_from方法代码示例

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


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

示例1: getNewItem

 public function getNewItem($id, $setID = true)
 {
     list($dummy, $className, $parentID, $suffix) = explode('-', $id);
     if (!Translatable::is_default_lang()) {
         $originalItem = Translatable::get_original($className, Session::get("{$id}_originalLangID"));
         if ($setID) {
             $originalItem->ID = $id;
         } else {
             $originalItem->ID = null;
             Translatable::creating_from(Session::get($id . '_originalLangID'));
         }
         return $originalItem;
     }
     $newItem = new $className();
     if (!$suffix) {
         $sessionTag = "NewItems." . $parentID . "." . $className;
         if (Session::get($sessionTag)) {
             $suffix = '-' . Session::get($sessionTag);
             Session::set($sessionTag, Session::get($sessionTag) + 1);
         } else {
             Session::set($sessionTag, 1);
         }
         $id = $id . $suffix;
     }
     $newItem->Title = _t('CMSMain.NEW', "New ", PR_MEDIUM, '"New " followed by a className') . $className;
     $newItem->URLSegment = "new-" . strtolower($className);
     $newItem->ClassName = $className;
     $newItem->ParentID = $parentID;
     // DataObject::fieldExists only checks the current class, not the hierarchy
     // This allows the CMS to set the correct sort value
     if ($newItem->castingHelperPair('Sort')) {
         $newItem->Sort = DB::query("SELECT MAX(Sort)  FROM SiteTree WHERE ParentID = '" . Convert::raw2sql($parentID) . "'")->value() + 1;
     }
     if (Member::currentUser()) {
         $newItem->OwnerID = Member::currentUser()->ID;
     }
     if ($setID) {
         $newItem->ID = $id;
     }
     # Some modules like subsites add extra fields that need to be set when the new item is created
     $this->extend('augmentNewSiteTreeItem', $newItem);
     return $newItem;
 }
开发者ID:ramziammar,项目名称:websites,代码行数:43,代码来源:CMSMain.php


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