예제 #1
0
파일: post-form.php 프로젝트: alx/pressmark
					<input type="text" name="posttitle" id="posttitle" tabindex="1" value=""
						onfocus="this.value=(this.value=='<?php 
echo js_escape(__('Post Title', 'p2'));
?>
') ? '' : this.value;"
						onblur="this.value=(this.value=='') ? '<?php 
echo js_escape(__('Post Title', 'p2'));
?>
' : this.value;" />
				</div>
				<?php 
if (current_user_can('upload_files')) {
    ?>
				<div id="media-buttons" class="hide-if-no-js">
					<?php 
    echo P2::media_buttons();
    ?>
				</div>
				<?php 
}
?>
				<textarea class="expand70-200" name="posttext" id="posttext" tabindex="1" rows="3" cols="60"></textarea>
				<div id="postbox-type-quote" class="post-input <?php 
if ('quote' == p2_get_posting_type()) {
    echo " selected";
}
?>
">
					<label for="postcitation" class="invisible"><?php 
_e('Citation', 'p2');
?>
예제 #2
0
function p2_media_buttons()
{
    echo P2::media_buttons();
}
예제 #3
0
파일: p2.php 프로젝트: alx/pressmark
 function make_media_urls_absolute($string)
 {
     $string = str_replace('images/', P2::admin_url('images/'), $string);
     // This line does not work in .org
     return str_replace('media-upload.php?', P2::admin_url('media-upload.php?p2-upload=true&'), $string);
 }
예제 #4
0
			<form id="new_post" name="new_post" method="post" action="<?php echo site_url(); ?>/">
				<?php if ( 'post' == p2_get_posting_type() || '' == p2_get_posting_type() ) : ?>
				<label for="posttext">
					<?php p2_user_prompt(); ?>
				</label>
				<?php endif; ?>

				<div id="postbox-type-post" class="post-input <?php if ( 'post' == p2_get_posting_type() ) echo ' selected'; ?>">
					<input type="text" name="posttitle" id="posttitle" tabindex="1" value=""
						onfocus="this.value=(this.value=='<?php echo esc_js( __( 'Post Title', 'p2' ) ); ?>') ? '' : this.value;"
						onblur="this.value=(this.value=='') ? '<?php echo esc_js( __( 'Post Title', 'p2' ) ); ?>' : this.value;" />
				</div>
				<?php if ( current_user_can( 'upload_files' ) ): ?>
				<div id="media-buttons" class="hide-if-no-js">
					<?php echo P2::media_buttons(); ?>
				</div>
				<?php endif; ?>
				<textarea class="expand70-200" name="posttext" id="posttext" tabindex="1" rows="4" cols="60"></textarea>
				<div id="postbox-type-quote" class="post-input <?php if ( 'quote' == p2_get_posting_type() ) echo " selected"; ?>">
					<label for="postcitation" class="invisible"><?php _e( 'Citation', 'p2' ); ?></label>
						<input id="postcitation" name="postcitation" type="text" tabindex="2"
							value="<?php esc_attr_e( 'Citation', 'p2' ); ?>"
							onfocus="this.value=(this.value=='<?php echo esc_js( __( 'Citation', 'p2' ) ); ?>') ? '' : this.value;"
							onblur="this.value=(this.value=='') ? '<?php echo esc_js( __( 'Citation', 'p2' ) ); ?>' : this.value;" />
				</div>
				<label class="post-error" for="posttext" id="posttext_error"></label>
				<div class="postrow">
					<input id="tags" name="tags" type="text" tabindex="2" autocomplete="off"
						value="<?php esc_attr_e( 'Tag it', 'p2' ); ?>"
						onfocus="this.value=(this.value=='<?php echo esc_js( __( 'Tag it', 'p2' ) ); ?>') ? '' : this.value;"
예제 #5
0
파일: p2.php 프로젝트: r-chopra17/p2bp
	function make_media_urls( $string ) {
		// This line does not work in .org
		return str_replace( 'media-upload.php?', P2::admin_url( 'media-upload.php?p2-upload=true&' ), $string );
	}