Files
WordPress/wp-admin/bookmarklet.php
T

108 lines
2.3 KiB
PHP
Raw Normal View History

<?php
2003-06-01 11:43:03 +00:00
$mode = 'bookmarklet';
2004-10-19 16:01:13 +00:00
require_once('admin.php');
2005-07-17 19:29:55 +00:00
if ( ! current_user_can('edit_posts') )
wp_die(__('Cheatin&#8217; uh?'));
2005-10-28 08:43:23 +00:00
if ('b' == $a):
2004-08-01 08:04:16 +00:00
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
2004-08-01 08:04:16 +00:00
<script type="text/javascript">
<!--
window.close()
-->
</script>
</head>
<body></body>
2004-10-05 06:59:13 +00:00
</html>
<?php
2005-10-28 08:43:23 +00:00
exit;
endif;
$post = get_default_post_to_edit();
$popuptitle = wp_specialchars(stripslashes($popuptitle));
$text = wp_specialchars(stripslashes(urldecode($text)));
2005-10-28 08:43:23 +00:00
$popuptitle = funky_javascript_fix($popuptitle);
$text = funky_javascript_fix($text);
2005-10-28 08:43:23 +00:00
$post_title = wp_specialchars($_REQUEST['post_title']);
if (!empty($post_title))
$post->post_title = stripslashes($post_title);
else
$post->post_title = $popuptitle;
2005-10-28 08:43:23 +00:00
$content = wp_specialchars($_REQUEST['content']);
$popupurl = clean_url($_REQUEST['popupurl']);
if ( !empty($content) ) {
$post->post_content = wp_specialchars( stripslashes($_REQUEST['content']) );
} else {
$post->post_content = '<a href="'.$popupurl.'">'.$popuptitle.'</a>'."\n$text";
}
2005-10-28 08:43:23 +00:00
/* /big funky fixes */
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
2004-08-01 08:04:16 +00:00
<title><?php bloginfo('name') ?> &rsaquo; Bookmarklet &#8212; WordPress</title>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
2008-03-02 20:17:30 +00:00
<?php
wp_admin_css( 'css/global' );
wp_admin_css();
?>
<style type="text/css">
<!--
2003-06-01 11:43:03 +00:00
#wpbookmarklet textarea,input,select {
border-width: 1px;
border-color: #cccccc;
border-style: solid;
padding: 2px;
margin: 1px;
}
2003-06-01 11:43:03 +00:00
#wpbookmarklet .checkbox {
background-color: #ffffff;
border-width: 0px;
padding: 0px;
margin: 0px;
}
2003-06-01 11:43:03 +00:00
#wpbookmarklet textarea {
font-family: Verdana, Geneva, Arial, Helvetica;
font-size: 0.9em;
}
#wpbookmarklet .wrap {
border: 0px;
}
#wpbookmarklet #postdiv {
margin-bottom: 0.5em;
}
#wpbookmarklet #titlediv {
margin-bottom: 1em;
2003-09-08 05:03:38 +00:00
}
-->
</style>
</head>
<body id="wpbookmarklet">
2004-08-01 08:04:16 +00:00
<div id="wphead">
<h1><?php bloginfo('name') ?></h1>
</div>
<?php require('edit-form.php'); ?>
2005-02-12 07:41:29 +00:00
<?php do_action('admin_footer', ''); ?>
</body>
2005-10-28 08:43:23 +00:00
</html>