本文整理汇总了PHP中Issue::getLanguageId方法的典型用法代码示例。如果您正苦于以下问题:PHP Issue::getLanguageId方法的具体用法?PHP Issue::getLanguageId怎么用?PHP Issue::getLanguageId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Issue
的用法示例。
在下文中一共展示了Issue::getLanguageId方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: htmlspecialchars
?>
"><IMG SRC="<?php
echo $Campsite["ADMIN_IMAGE_BASE_URL"];
?>
/left_arrow.png" BORDER="0"></A></TD>
<TD><A HREF="/<?php
echo $ADMIN;
?>
/issues/edit.php?Pub=<?php
p($f_publication_id);
?>
&Issue=<?php
p($issueObj->getIssueNumber());
?>
&Language=<?php
p($issueObj->getLanguageId());
?>
"><B><?php
echo $translator->trans("Issue") . ": " . htmlspecialchars($issueObj->getName());
?>
</B></A></TD>
</TR>
</TABLE>
<?php
camp_html_display_msgs();
?>
<P>
<FORM NAME="issue_translate" METHOD="POST" ACTION="/<?php
echo $ADMIN;
示例2: array
} else {
$errMsg = $translator->trans("Could not save the changes to the issue.", array(), 'issues');
camp_html_add_msg($errMsg);
exit;
}
// The tricky part - language ID and URL name must be unique.
$conflictingIssues = Issue::GetIssues($f_publication_id, $f_new_language_id, null, $f_url_name, null, false, null, true);
$conflictingIssue = array_pop($conflictingIssues);
// If it conflicts with another issue
if ($errorMsg = camp_is_issue_conflicting($f_publication_id, $f_issue_number, $f_new_language_id, $f_url_name, true)) {
camp_html_add_msg($errorMsg);
camp_html_goto_page($backLink);
} else {
$issueObj->setProperty('ShortName', $f_url_name, false);
$issueObj->setProperty('IdLanguage', $f_new_language_id, false);
$issueObj->commit();
//@New theme management
if (SaaS::singleton()->hasPermission('ManageIssueTemplates')) {
if ($newOutputSetting) {
$outputSettingIssueService->insert($outSetIssue);
} else {
$outputSettingIssueService->update($outSetIssue);
}
}
$cacheService = \Zend_Registry::get('container')->getService('newscoop.cache');
$cacheService->clearNamespace('issue');
//@New theme management
$link = "/{$ADMIN}/issues/edit.php?Pub={$f_publication_id}&Issue={$f_issue_number}&Language=" . $issueObj->getLanguageId();
camp_html_add_msg($translator->trans('Issue updated', array(), 'issues'), "ok");
camp_html_goto_page($link);
}
示例3: explode
$publish_date = $datetime[0];
$publish_time = explode(":", trim($datetime[1]));
$publish_hour = $publish_time[0];
$publish_min = $publish_time[1];
}
camp_html_content_top(getGS('Issue Publishing Schedule'), array('Pub' => $publicationObj, 'Issue' => $issueObj), true, true);
?>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="1" class="action_buttons" style="padding-top: 5px;">
<TR>
<TD><A HREF="/<?php echo $ADMIN; ?>/issues/?Pub=<?php p($Pub); ?>"><IMG SRC="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/left_arrow.png" BORDER="0"></A></TD>
<TD><A HREF="/<?php echo $ADMIN; ?>/issues/?Pub=<?php p($Pub); ?>"><B><?php putGS("Issue List"); ?></B></A></TD>
<TD style="padding-left: 20px;"><A HREF="/<?php echo $ADMIN; ?>/issues/?Pub=<?php p($Pub); ?>"><IMG SRC="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/left_arrow.png" BORDER="0"></A></TD>
<TD><A HREF="/<?php echo $ADMIN; ?>/issues/edit.php?Pub=<?php p($Pub); ?>&Issue=<?php p($issueObj->getIssueNumber()); ?>&Language=<?php p($issueObj->getLanguageId()); ?>"><B><?php echo getGS("Issue").": ".htmlspecialchars($issueObj->getName()); ?></B></A></TD>
</TR>
</TABLE>
<P>
<FORM NAME="dialog" METHOD="POST" ACTION="autopublish_do_add.php" onsubmit="return <?php camp_html_fvalidate(); ?>;">
<?php echo SecurityToken::FormParameter(); ?>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" class="box_table">
<TR>
<TD COLSPAN="2">
<?php if (is_null($event_id)) { ?>
<B><?php putGS("Schedule a new action"); ?></B>
<?php } else { ?>
<B><?php putGS("Edit"); ?></B>
<?php } ?>
<HR NOSHADE SIZE="1" COLOR="BLACK">
示例4:
?>
"><B><?php
putGS("Issue List");
?>
</B></A></TD>
<TD style="padding-left: 20px;"><A HREF="/<?php
echo $ADMIN;
?>
/sections/?Pub=<?php
p($Pub);
?>
&Issue=<?php
p($issueObj->getIssueNumber());
?>
&Language=<?php
p($issueObj->getLanguageId());
?>
"><B><?php
putGS("Go To Sections");
?>
</B></A></TD>
<TD><A HREF="/<?php
echo $ADMIN;
?>
/sections/?Pub=<?php
p($Pub);
?>
&Issue=<?php
p($issueObj->getIssueNumber());
?>
&Language=<?php
示例5: getGS
}
$changed &= $issueObj->setIssueTemplateId($f_issue_template_id);
$changed &= $issueObj->setSectionTemplateId($f_section_template_id);
$changed &= $issueObj->setArticleTemplateId($f_article_template_id);
if ($changed) {
$logtext = getGS('Issue "$1" ($2) updated in publication "$3"', $f_issue_name, $f_issue_number, $publicationObj->getName());
Log::Message($logtext, $g_user->getUserId(), 11);
} else {
$errMsg = getGS("Could not save the changes to the issue.");
camp_html_add_msg($errMsg);
exit;
}
// The tricky part - language ID and URL name must be unique.
$conflictingIssues = Issue::GetIssues($f_publication_id, $f_new_language_id, null, $f_url_name, null, false, null, true);
$conflictingIssue = array_pop($conflictingIssues);
// If it conflicts with another issue
if ($errorMsg = camp_is_issue_conflicting($f_publication_id, $f_issue_number, $f_new_language_id, $f_url_name, true)) {
camp_html_add_msg($errorMsg);
camp_html_goto_page($backLink);
} else {
$issueObj->setProperty('ShortName', $f_url_name, false);
$issueObj->setProperty('IdLanguage', $f_new_language_id, false);
$issueObj->commit();
$link = "/$ADMIN/issues/edit.php?Pub=$f_publication_id&Issue=$f_issue_number&Language=".$issueObj->getLanguageId();
camp_html_add_msg(getGS('Issue updated'), "ok");
camp_html_goto_page($link);
}
?>
示例6: Language
$url_args1 = "Pub=$Pub&Issue=$Issue&Language=$Language";
$url_args2 = $url_args1."&Section=$Section";
$languageObj = new Language($Language);
if (!is_object($languageObj)) {
$languageObj = new Language(1);
}
//$editorLanguage = camp_session_get('TOL_Language', $languageObj->getCode());
$editorLanguage = !empty($_COOKIE['TOL_Language']) ? $_COOKIE['TOL_Language'] : $languageObj->getCode();
editor_load_tinymce('cDescription', $g_user, 0, $editorLanguage, 'section');
?>
<script type="text/javascript" src="<?php echo $Campsite['WEBSITE_URL']; ?>/js/campsite.js"></script>
<table border="0" cellspacing="0" cellpadding="1" class="action_buttons" style="padding-top: 5px;">
<tr>
<td><a href="/<?php echo $ADMIN; ?>/sections/?Pub=<?php p($Pub); ?>&Issue=<?php p($issueObj->getIssueNumber()); ?>&Language=<?php p($issueObj->getLanguageId()); ?>"><img src="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/left_arrow.png" border="0" /></a></td>
<td><a href="/<?php echo $ADMIN; ?>/sections/?Pub=<?php p($Pub); ?>&Issue=<?php p($issueObj->getIssueNumber()); ?>&Language=<?php p($issueObj->getLanguageId()); ?>"><b><?php putGS("Section List"); ?></b></a></td>
<td style="padding-left: 20px;"><a href="/<?php echo $ADMIN; ?>/articles/?f_publication_id=<?php p($Pub); ?>&f_issue_number=<?php p($sectionObj->getIssueNumber()); ?>&f_section_number=<?php p($sectionObj->getSectionNumber()); ?>&f_language_id=<?php p($sectionObj->getLanguageId()); ?>"><b><?php putGS("Go To Articles"); ?></b></a></td>
<td><a href="/<?php echo $ADMIN; ?>/articles/?f_publication_id=<?php p($Pub); ?>&f_issue_number=<?php p($sectionObj->getIssueNumber()); ?>&f_section_number=<?php p($sectionObj->getSectionNumber()); ?>&f_language_id=<?php p($sectionObj->getLanguageId()); ?>"><img src="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/go_to.png" border="0" /></a></td>
</tr>
</table>
<p>
<table border="0" cellspacing="0" cellpadding="1" class="action_buttons">
<tr>
<td><a href="add.php?<?php p($url_args1); ?>"><img src="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/add.png" border="0" /></a></td>
<td><a href="add.php?<?php p($url_args1); ?>"><b><?php putGS("Add new section"); ?></b></a></td>
<td style="padding-left: 20px;"><a href="duplicate.php?<?php p($url_args2); ?>"><img src="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/duplicate.png" border="0" /></a></td>
<td><a href="duplicate.php?<?php p($url_args2); ?>" ><b><?php putGS("Duplicate"); ?></b></a></td>
<td style="padding-left: 20px;"><a href="del.php?<?php p($url_args2); ?>"><img src="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/delete.png" border="0" /></a></td>
<td><a href="del.php?<?php p($url_args2); ?>" ><b><?php putGS("Delete"); ?></b></a></td>
示例7: p
$url_args1 = "Pub=$Pub";
$url_args2 = $url_args1."&Issue=$Issue&Language=$Language";
$url_args3 = "f_publication_id=$Pub&f_issue_number=$Issue&f_language_id=$Language";
if (Issue::GetNumIssues($Pub) <= 0) {
$url_add = "add_new.php";
} else {
$url_add = "qadd.php";
}
?>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="1" class="action_buttons" style="padding-top: 5px;">
<TR>
<TD><A HREF="/<?php echo $ADMIN; ?>/issues/?Pub=<?php p($Pub); ?>"><IMG SRC="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/left_arrow.png" BORDER="0"></A></TD>
<TD><A HREF="/<?php echo $ADMIN; ?>/issues/?Pub=<?php p($Pub); ?>"><B><?php putGS("Issue List"); ?></B></A></TD>
<TD style="padding-left: 20px;"><A HREF="/<?php echo $ADMIN; ?>/sections/?Pub=<?php p($Pub); ?>&Issue=<?php p($issueObj->getIssueNumber()); ?>&Language=<?php p($issueObj->getLanguageId()); ?>"><B><?php putGS("Go To Sections"); ?></B></A></TD>
<TD><A HREF="/<?php echo $ADMIN; ?>/sections/?Pub=<?php p($Pub); ?>&Issue=<?php p($issueObj->getIssueNumber()); ?>&Language=<?php p($issueObj->getLanguageId()); ?>"><IMG SRC="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/go_to.png" BORDER="0"></A></TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="1" class="action_buttons">
<TR>
<TD><A HREF="<?php p($url_add); ?>?<?php p($url_args1); ?>" ><IMG SRC="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/add.png" BORDER="0"></A></TD>
<TD><A HREF="<?php p($url_add); ?>?<?php p($url_args1); ?>" ><B><?php putGS("Add new issue"); ?></B></A></TD>
<TD style="padding-left: 20px;"><A HREF="" ONCLICK="window.open('preview.php?<?php p($url_args2); ?>', 'fpreview', 'resizable=yes, menubar=no, toolbar=yes, width=800, height=600'); return false;"><IMG SRC="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/preview.png" BORDER="0"></A></TD>
<TD><A HREF="" ONCLICK="window.open('preview.php?<?php p($url_args2); ?>', 'fpreview', 'resizable=yes, menubar=no, toolbar=yes, width=800, height=600'); return false;"><B><?php putGS("Preview"); ?></B></A></TD>
<TD style="padding-left: 20px;"><A HREF="translate.php?<?php p($url_args2); ?>" ><IMG SRC="<?php echo $Campsite["ADMIN_IMAGE_BASE_URL"]; ?>/translate.png" BORDER="0"></A></TD>
<TD><A HREF="translate.php?<?php p($url_args2); ?>" ><B><?php putGS("Translate"); ?></B></A></TD>