本文整理汇总了PHP中Entry::setEntryTranslOf方法的典型用法代码示例。如果您正苦于以下问题:PHP Entry::setEntryTranslOf方法的具体用法?PHP Entry::setEntryTranslOf怎么用?PHP Entry::setEntryTranslOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Entry
的用法示例。
在下文中一共展示了Entry::setEntryTranslOf方法的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;
}
示例2: EntryManager
// 11
$em = new EntryManager();
// 12
// 7, 8, 9, 10
//table_to_see_post_values(); // 27
$entry = new Entry();
// 32
// 11, 29
//$entry->setEntryId($_POST['id']);
$entry->setEntryLanguageId($_POST['langid']);
// 30 (?)
$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