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


PHP Entry::setEntrySourceId方法代码示例

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


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

示例1: getEntryFull

 /**
  * getEntryFull($resultOfSelect)
  * To retrieve ALL the fields of one entry for the entry profile page.
  * @param type $resultOfSelect
  * @return \Entry
  */
 private function getEntryFull($resultOfSelect)
 {
     // 42,43,44
     $Entry = new Entry();
     // 45
     while ($list = mysqli_fetch_assoc($resultOfSelect)) {
         // 41
         $Entry->setEntryId($list['ent_entry_id']);
         $Entry->setEntryLanguage($list['lan_lang_name']);
         //53
         $Entry->setEntryText($list['ent_entry_text']);
         $Entry->setEntryVerbatim($list['ent_entry_verbatim']);
         $Entry->setEntryTranslit($list['ent_entry_translit']);
         $Entry->setEntryAuthenStatusId($list['ent_entry_authen_status_id']);
         $Entry->setEntryTranslOf($list['ent_entry_translation_of']);
         $Entry->setEntryUserId($list['ent_entry_creator_id']);
         $Entry->setEntryMediaId($list['ent_entry_media_id']);
         $Entry->setEntryCommentId($list['ent_entry_comment_id']);
         $Entry->setEntryRatingId($list['ent_entry_rating_id']);
         $Entry->setEntryTags($list['ent_entry_tags']);
         //$Entry->setEntryAuthorId(       $list['ent_entry_author_id']);
         $Entry->setEntryAuthors($list['ent_entry_authors']);
         $Entry->setEntrySourceId($list['ent_entry_source_id']);
         $Entry->setEntryUse($list['ent_entry_use']);
         $Entry->setEntryHttpLink($list['ent_entry_http_link']);
         $Entry->setEntryCreationDate($list['ent_entry_creation_date']);
     }
     // while
     return $Entry;
 }
开发者ID:lilyfan,项目名称:Tarboz,代码行数:36,代码来源:EntryDataAccessor.php

示例2: function

         $entry->setEntryText(htmlentities($_POST['text']));
         $entry->setEntryVerbatim(htmlentities($_POST['verbatim']));
         $entry->setEntryTranslit(htmlentities($_POST['translit']));
         $entry->setEntryAuthenStatusId($_POST['authen']);
         $entry->setEntryTranslOf($_POST['translOf']);
         //$entry->setEntryUserId('3');//$_POST['creator']);
         $entry->setEntryUserId($user_id);
         $entry->setEntryMediaId('1');
         //($_POST['media_id']);
         $entry->setEntryCommentId('2');
         //$_POST['comment_id'];
         $entry->setEntryRatingId('1');
         //($_POST['rating_id']);
         $entry->setEntryTags(htmlentities($_POST['tags']));
         $entry->setEntryAuthors(htmlentities($_POST['authors']));
         $entry->setEntrySourceId('1');
         //$_POST['source']);
         $entry->setEntryUse(htmlentities($_POST['use']));
         $entry->setEntryHttpLink(htmlentities(str_replace("watch?v=", "v/", $_POST['link'])));
         //43
         $entry->setEntryCreationDate(date("Y-m-d H:i:s"));
         $id = $em->createEntry($entry);
         // 13
         // 52*
         //header("Location: index.php?id=" . $id); // 31
         echo "<script type='text/javascript'>\n              window.onload = function () { \n                top.location.href = 'entryview.php?id={$id}'; \n              };\n             </script>";
     }
     // 16
 } else {
     // if user's input is invalid
     if (isset($_GET['id'])) {
开发者ID:lilyfan,项目名称:Tarboz,代码行数:31,代码来源:entrycreate.php


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