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


PHP camp_html_copyright_notice函数代码示例

本文整理汇总了PHP中camp_html_copyright_notice函数的典型用法代码示例。如果您正苦于以下问题:PHP camp_html_copyright_notice函数的具体用法?PHP camp_html_copyright_notice怎么用?PHP camp_html_copyright_notice使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: putGS

<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" CLASS="box_table">
<TR>
	<TD COLSPAN="2">
		<B><?php  putGS("Copy previous issue"); ?></B>
		<HR NOSHADE SIZE="1" COLOR="BLACK">
	</TD>
</TR>
<TR>
	<TD COLSPAN="2"><?php  putGS('Copy structure from issue number $1','<B>'. $lastCreatedIssue->getIssueNumber().'</B>'); ?></TD>
</TR>
<TR>
	<TD ALIGN="RIGHT" ><?php  putGS("Issue Number"); ?>:</TD>
	<TD>
	<INPUT TYPE="TEXT" class="input_text" NAME="f_issue_number" VALUE="<?php  print ($lastCreatedIssue->getIssueNumber() + 1); ?>" SIZE="5" MAXLENGTH="10" alt="number|0|1|1000000000" emsg="<?php putGS("You must input a number greater than 0 into the $1 field.", "'".getGS("Number")."'"); ?>">
	</TD>
</TR>
<TR>
	<TD COLSPAN="2" align="center">
		<INPUT TYPE="HIDDEN" NAME="f_publication_id" VALUE="<?php p($Pub); ?>">
		<INPUT TYPE="submit" class="button" NAME="Save" VALUE="<?php  putGS('Save'); ?>">
	</TD>
</TR>
</TABLE>
</FORM>
<P>
<script>
document.issue_add.f_issue_number.focus();
</script>
<?php  } ?>
<?php camp_html_copyright_notice(); ?>
开发者ID:nistormihai,项目名称:Newscoop,代码行数:30,代码来源:add_prev.php

示例2: array

            <table>
            <tr>
                <td>
                   <b><a href="<?php 
echo "/{$ADMIN}/sections/edit.php?Pub={$f_dest_publication_id}&Issue={$f_dest_issue_number}&Section={$f_dest_section_number}&Language={$f_language_id}";
?>
"><?php 
echo $translator->trans("Go to new section", array(), 'sections');
?>
</a></b>
                </td>
                <td style="padding-left: 50px;">
    	           <b><a href="<?php 
echo "/{$ADMIN}/sections/edit.php?Pub={$f_src_publication_id}&Issue={$f_src_issue_number}&Section={$f_src_section_number}&Language={$f_language_id}";
?>
"><?php 
echo $translator->trans("Go to source section", array(), 'sections');
?>
</a></b>
    	        </td>
    	    </tr>
    	    </table>
		</DIV>
	</TD>
</TR>
</TABLE>
<P>

<?php 
camp_html_copyright_notice();
开发者ID:sourcefabric,项目名称:newscoop,代码行数:30,代码来源:duplicate_complete.php

示例3: putGS

?>

<br/>
<form name="f_set_author" method="post">
<TABLE BORDER="0" CELLSPACING="4" CELLPADDING="2" CLASS="table_input">
<TR>
    <TD VALIGN="TOP" align="left" nowrap>
        <?php putGS("Select the field from which to generate the author"); ?>:
    </td>
    <td valign="top" align="left">
        <select name="f_src_author_field">
        <?php
        foreach ($availableFields as $field) {
        	echo "<option value=\"" . htmlspecialchars($field->getPrintName())
        	     . "\">" . $field->getPrintName() . "</option>\n";
        }
        ?>
        </select>
    </td>
</tr>
<tr>
    <td colspan="2" align="center">
        <input type="submit" name="f_submit" value="<?php putGS("Submit"); ?>">
    </td>
</tr>
</table>
</form>

<?php camp_html_copyright_notice(false); ?>
开发者ID:nistormihai,项目名称:Newscoop,代码行数:29,代码来源:set-author.php


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