| 1 |
<?php |
| 2 |
/** |
| 3 |
* Admin Menue |
| 4 |
**/ |
| 5 |
|
| 6 |
/** |
| 7 |
* Don't load this file direct! |
| 8 |
*/ |
| 9 |
if (!defined('ABSPATH')) { |
| 10 |
return ; |
| 11 |
} |
| 12 |
|
| 13 |
if (is_admin()) { |
| 14 |
add_action('admin_menu', 'rw_cryptx_menu'); |
| 15 |
} |
| 16 |
|
| 17 |
/** |
| 18 |
* load admin notice after activate/update if needed |
| 19 |
*/ |
| 20 |
if(isset($cryptX_var['admin_notices_deprecated'])) { |
| 21 |
add_action('admin_notices', 'rw_cryptx_showAdminMessages'); |
| 22 |
$cryptX_var['admin_notices_deprecated']=false; |
| 23 |
update_option( 'cryptX', $cryptX_var); |
| 24 |
} |
| 25 |
|
| 26 |
/** |
| 27 |
* print admin notice |
| 28 |
*/ |
| 29 |
function rw_cryptx_showAdminMessages() |
| 30 |
{ |
| 31 |
$searcher = new rw_cryptx_FileSystemStringSearch(get_template_directory().'/', ' cryptx('); |
| 32 |
$searcher->run(); |
| 33 |
|
| 34 |
if (current_user_can('manage_options')) { |
| 35 |
if($searcher->getResultCount() > 0) { |
| 36 |
$msg = '<p><strong>'; |
| 37 |
$msg .= __('You use the deprecated CryptX function cryptx() in your template. You should use the new function encryptx() described at the plugin', 'cryptx'); |
| 38 |
$msg .= sprintf( |
| 39 |
' <a href="options-general.php?page=%s">%s</a>', |
| 40 |
plugin_basename( __FILE__ ), |
| 41 |
__('Settings') |
| 42 |
); |
| 43 |
$msg .= '.</strong></p>'; |
| 44 |
$msg .= '<ul>'; |
| 45 |
foreach($searcher->getResults() as $result) { |
| 46 |
$msg .= '<li><em>'.$result['filePath'].', line '.$result['lineNumber'].'</em></li>'; |
| 47 |
} |
| 48 |
$msg .= '</ul>'; |
| 49 |
rw_cryptx_showMessage($msg, true); |
| 50 |
} elseif(isset($_POST['cryptX_rescan_theme'])) { |
| 51 |
rw_cryptx_showMessage('<p>'.__('Your theme is OK! You have nothing to do.','cryptx').'</p>'); |
| 52 |
} |
| 53 |
} |
| 54 |
} |
| 55 |
|
| 56 |
/** |
| 57 |
* add links to plugin site |
| 58 |
*/ |
| 59 |
function rw_cryptx_init_row_meta($links, $file) { |
| 60 |
if (CRYPTX_BASENAME == $file) { |
| 61 |
return array_merge( |
| 62 |
$links, |
| 63 |
array( |
| 64 |
sprintf( |
| 65 |
'<a href="options-general.php?page=%s">%s</a>', |
| 66 |
plugin_basename( __FILE__ ), |
| 67 |
__('Settings') |
| 68 |
) |
| 69 |
), |
| 70 |
array( |
| 71 |
sprintf( |
| 72 |
'<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4026696">%s</a>', |
| 73 |
__('Donate', 'cryptx') |
| 74 |
) |
| 75 |
) |
| 76 |
); |
| 77 |
} |
| 78 |
return $links; |
| 79 |
} |
| 80 |
|
| 81 |
/** |
| 82 |
* add CryptX to Option menu |
| 83 |
*/ |
| 84 |
function rw_cryptx_menu() { |
| 85 |
add_options_page( |
| 86 |
'CryptX', |
| 87 |
(version_compare($GLOBALS['wp_version'], '2.6.999', '>') ? '<img src="' .@plugins_url('cryptx/icon.png'). '" width="10" height="10" alt="CryptX Icon" />' : ''). 'CryptX', |
| 88 |
'manage_options', |
| 89 |
__FILE__, |
| 90 |
'rw_cryptx_submenu' |
| 91 |
); |
| 92 |
} |
| 93 |
|
| 94 |
/** |
| 95 |
* print CryptX Option Page |
| 96 |
*/ |
| 97 |
function rw_cryptx_submenu() { |
| 98 |
global $cryptX_var, $data; |
| 99 |
if (isset($_POST) && !empty($_POST)) { |
| 100 |
if (function_exists('current_user_can') === true && current_user_can('manage_options') === false) { |
| 101 |
wp_die("You don't have permission to access!"); |
| 102 |
} |
| 103 |
$saveOptions = $_POST['cryptX_var']; |
| 104 |
check_admin_referer('cryptX'); |
| 105 |
if(isset($_POST['cryptX_var_reset'])) { |
| 106 |
delete_option('cryptX'); |
| 107 |
$saveOptions = rw_loadDefaults(); |
| 108 |
} |
| 109 |
if(isset($_POST['cryptX_rescan_theme'])) { |
| 110 |
rw_cryptx_showAdminMessages(); |
| 111 |
} else { |
| 112 |
$checkboxes = array( |
| 113 |
'the_content' => 0, |
| 114 |
'the_meta_key' => 0, |
| 115 |
'the_excerpt' => 0, |
| 116 |
'comment_text' => 0, |
| 117 |
'widget_text' => 0, |
| 118 |
'autolink' => 0, |
| 119 |
'metaBox' => 0, |
| 120 |
); |
| 121 |
$saveOptions = wp_parse_args( $saveOptions, $checkboxes ); |
| 122 |
update_option( 'cryptX', $saveOptions); |
| 123 |
$cryptX_var = rw_loadDefaults(); |
| 124 |
?> |
| 125 |
<div id="message" class="updated fade"> |
| 126 |
<p><strong><?php _e('Settings saved.') ?></strong></p> |
| 127 |
</div> |
| 128 |
<?php } ?> |
| 129 |
<?php } ?> |
| 130 |
|
| 131 |
<div class="wrap"> |
| 132 |
<?php if (version_compare($GLOBALS['wp_version'], '2.6.999', '>')) { ?> |
| 133 |
<div class="icon32" style="background: url(<?php echo @plugins_url('cryptx/icon32.png') ?>) no-repeat"><br /></div> |
| 134 |
<?php } ?> |
| 135 |
<h2>CryptX</h2> |
| 136 |
<br class="clear" /> |
| 137 |
<form method="post" action=""> |
| 138 |
<?php wp_nonce_field('cryptX') ?> |
| 139 |
<div id="poststuff" class="meta-box-sortables ui-sortable"> |
| 140 |
<div id="rw_cryptx_information_box" class="postbox"> |
| 141 |
<h3><span><?php _e("Information",'cryptx'); ?></span></h3> |
| 142 |
<div class="inside"> |
| 143 |
<table class="form-table"> |
| 144 |
<tr> |
| 145 |
<td valign="top" width="1%" nowrap><b><i><u>NEWS:</u></i> </b></td> |
| 146 |
<td valign="top" style="padding:0;"><div id="cryptx-news-content" style="display:none;"></div></td> |
| 147 |
<td valign="top" width="50%" style="border-left: 1px solid #999;"><?php |
| 148 |
$data = get_plugin_data(__FILE__); |
| 149 |
echo sprintf( |
| 150 |
'%1$s: %2$s <br /> %3$s: %4$s <br /> %5$s: <a href="http://weber-nrw.de" target="_blank">Ralf Weber</a> | <a href="http://twitter.com/Weber_NRW" target="_blank">%6$s</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4026696">%7$s</a><br />', |
| 151 |
__('Plugin'), |
| 152 |
'CryptX', |
| 153 |
__('Version'), |
| 154 |
rw_cryptx_version() /*$data['Version']*/, |
| 155 |
__('Author'), |
| 156 |
__('Follow on Twitter', 'cryptx'), |
| 157 |
__('Donate', 'cryptx') |
| 158 |
); |
| 159 |
?> |
| 160 |
</td> |
| 161 |
</tr> |
| 162 |
<tr> |
| 163 |
<td colspan="3" align="center" style="font-weight: bold;"><?php _e("Please support me by translating CryptX into other languages. You can download the cryptx.pot file from my",'cryptx'); ?> <a href="http://weber-nrw.de/wordpress/cryptx/downloads/"><?php _e("site",'cryptx'); ?></a> <?php _e("and mail me the zipped language files. Thanks for it.",'cryptx'); ?> |
| 164 |
</td> |
| 165 |
</tr> |
| 166 |
</table> |
| 167 |
</div> |
| 168 |
</div> |
| 169 |
|
| 170 |
<div id="rw_cryptx_presentation_box" class="postbox"> |
| 171 |
<h3><?php _e("Presentation",'cryptx'); ?></h3> |
| 172 |
<div class="inside"> |
| 173 |
|
| 174 |
<h4><?php _e("Define CSS Options",'cryptx'); ?></h4> |
| 175 |
<div class="postbox"> |
| 176 |
<table class="form-table"> |
| 177 |
<tr valign="top"> |
| 178 |
<th><label for="cryptX_var[css_id]"><?php _e("CSS ID",'cryptx'); ?></label></th> |
| 179 |
<td><input name="cryptX_var[css_id]" value="<?php echo $cryptX_var['css_id']; ?>" type="text" class="regular-text" /><br /><?php _e("Please be careful using this feature! IDs should be unique. You should prefer of using a css class instead.",'cryptx'); ?></td> |
| 180 |
</tr> |
| 181 |
<tr valign="top"> |
| 182 |
<th><label for="cryptX_var[css_class]"><?php _e("CSS Class",'cryptx'); ?></label></th> |
| 183 |
<td><input name="cryptX_var[css_class]" value="<?php echo $cryptX_var['css_class']; ?>" type="text" class="regular-text" /></td> |
| 184 |
</tr> |
| 185 |
</table> |
| 186 |
</div> |
| 187 |
|
| 188 |
<h4><?php _e("Define Presentation Options",'cryptx'); ?></h4> |
| 189 |
<div class="postbox"> |
| 190 |
<table class="form-table"> |
| 191 |
<tr valign="top"> |
| 192 |
<td><input name="cryptX_var[opt_linktext]" type="radio" id="opt_linktext" value="0" <?php checked( $cryptX_var['opt_linktext'], 0 ); ?> /></td> |
| 193 |
<th scope="row"><label for="cryptX_var[at]"><?php _e("Replacement for '@'",'cryptx'); ?></label></th> |
| 194 |
<td><input name="cryptX_var[at]" value="<?php echo $cryptX_var['at']; ?>" type="text" class="regular-text" /></td> |
| 195 |
</tr> |
| 196 |
<tr valign="top"> |
| 197 |
<td> </td> |
| 198 |
<th scope="row"><label for="cryptX_var[dot]"><?php _e("Replacement for '.'",'cryptx'); ?></label></th> |
| 199 |
<td><input name="cryptX_var[dot]" value="<?php echo $cryptX_var['dot']; ?>" type="text" class="regular-text" /></td> |
| 200 |
</tr> |
| 201 |
<tr valign="top" style="background: #efefef;"> |
| 202 |
<td scope="row"><input type="radio" name="cryptX_var[opt_linktext]" id="opt_linktext2" value="1" <?php checked( $cryptX_var['opt_linktext'], 1 ); ?> /></td> |
| 203 |
<th><label for="cryptX_var[alt_linktext]"><?php _e("Text for link",'cryptx'); ?></label></th> |
| 204 |
<td><input name="cryptX_var[alt_linktext]" value="<?php echo $cryptX_var['alt_linktext']; ?>" type="text" class="regular-text" /></td> |
| 205 |
</tr> |
| 206 |
<tr valign="top"> |
| 207 |
<td scope="row"><input type="radio" name="cryptX_var[opt_linktext]" id="opt_linktext3" value="2" <?php checked( $cryptX_var['opt_linktext'], 2 ); ?> /></td> |
| 208 |
<th><label for="cryptX_var[alt_linkimage]"><?php _e("Image-URL",'cryptx'); ?></label></th> |
| 209 |
<td><input name="cryptX_var[alt_linkimage]" value="<?php echo $cryptX_var['alt_linkimage']; ?>" type="text" class="regular-text" /></td> |
| 210 |
</tr> |
| 211 |
<tr valign="top"> |
| 212 |
<td scope="row"> </td> |
| 213 |
<th><label for="cryptX_var[http_linkimage_title]"><?php _e("Title-Tag for the Image",'cryptx'); ?></label></th> |
| 214 |
<td><input name="cryptX_var[http_linkimage_title]" value="<?php echo $cryptX_var['http_linkimage_title']; ?>" type="text" class="regular-text" /></td> |
| 215 |
</tr> |
| 216 |
<tr valign="top" style="background: #efefef;"> |
| 217 |
<td scope="row"><input type="radio" name="cryptX_var[opt_linktext]" id="opt_linktext4" value="3" <?php checked( $cryptX_var['opt_linktext'], 3 ); ?> /></td> |
| 218 |
<th><label for="cryptX_var[alt_uploadedimage]"><?php _e("Select image from folder",'cryptx'); ?></label></th> |
| 219 |
<td> <select name="cryptX_var[alt_uploadedimage]" onchange="cryptX_bild_wechsel(this)"> |
| 220 |
<?php foreach(rw_cryptx_dirImages() as $image) { |
| 221 |
?> |
| 222 |
<option value="<?php echo plugins_url('cryptx/images/').$image; ?>" <?php selected( $cryptX_var['alt_uploadedimage'], plugins_url('cryptx/images/').$image ); ?> ><?php echo $image; ?></option> |
| 223 |
<?php } ?> |
| 224 |
</select> |
| 225 |
<br/><?php _e("the selected image: ",'cryptx'); ?><img src="<?php echo $cryptX_var['alt_uploadedimage']; ?>" id="cryptXmailTo" align="top" style="padding: 3px;"><br/> |
| 226 |
<span class="setting-description"><?php echo sprintf( __("Upload your favorite email-image to '%s'. Only .jpg and .gif Supported!",'cryptx'), plugin_dir_path( __FILE__ ).'images/' ); ?></span></td> |
| 227 |
</tr> |
| 228 |
<tr valign="top" style="background: #efefef;"> |
| 229 |
<td> </td> |
| 230 |
<th><label for="cryptX_var[alt_linkimage_title]"><?php _e("Title-Tag for the Image",'cryptx'); ?></label></th> |
| 231 |
<td><input name="cryptX_var[alt_linkimage_title]" value="<?php echo $cryptX_var['alt_linkimage_title']; ?>" type="text" class="regular-text" /></td> |
| 232 |
</tr> |
| 233 |
<tr valign="top"> |
| 234 |
<td scope="row"><input type="radio" name="cryptX_var[opt_linktext]" id="opt_linktext4" value="4" <?php checked( $cryptX_var['opt_linktext'], 4 ); ?> /></td> |
| 235 |
<th colspan="2"><?php _e("Text scrambled by AntiSpamBot (<small>Try it and look at your site and check the html source!</small>)",'cryptx'); ?></th> |
| 236 |
</tr> |
| 237 |
<tr valign="top" style="background: #efefef;"> |
| 238 |
<td scope="row"><input type="radio" name="cryptX_var[opt_linktext]" id="opt_linktext5" value="5" <?php checked( $cryptX_var['opt_linktext'], 5 ); ?> /></td> |
| 239 |
<th><?php _e("Convert Email to PNG-image",'cryptx'); ?></th> |
| 240 |
<td><?php _e("Example with the saved options: ",'cryptx'); ?><img src="<?php echo get_bloginfo('url'); ?>/<?php echo md5( get_bloginfo('url') ); ?>/<?php echo antispambot("test@example.com"); ?>" align="absmiddle" alt="<?php echo antispambot("test@example.com"); ?>" title="<?php echo antispambot("test@example.com"); ?>"></td> |
| 241 |
</tr> |
| 242 |
<tr valign="top" style="background: #efefef;"> |
| 243 |
<td> </td> |
| 244 |
<th><label for="cryptX_var[c2i_font]"><?php _e("Choose a Font",'cryptx'); ?></label></th> |
| 245 |
<td><select name="cryptX_var[c2i_font]"> |
| 246 |
<?php foreach(rw_cryptx_dirFonts() as $font) { ?> |
| 247 |
<option value="<?php echo plugin_dir_path( __FILE__ ).'fonts/'.$font; ?>" <?php selected( $cryptX_var['c2i_font'], plugin_dir_path( __FILE__ ).'fonts/'.$font ); ?> ><?php echo $font; ?></option> |
| 248 |
<?php } ?> |
| 249 |
</select><br/> |
| 250 |
<span class="setting-description"><?php echo sprintf( __("Upload your favorite font to '%s'. Only .ttf is Supported!",'cryptx'), plugin_dir_path( __FILE__ ).'fonts/' ); ?></span> |
| 251 |
</td> |
| 252 |
</tr> |
| 253 |
<tr valign="top" style="background: #efefef;"> |
| 254 |
<td> </td> |
| 255 |
<th><label for="cryptX_var[c2i_fontSize]"><?php _e("Font size (pixel)",'cryptx'); ?></label></th> |
| 256 |
<td><input name="cryptX_var[c2i_fontSize]" value="<?php echo $cryptX_var['c2i_fontSize']; ?>" type="text" class="regular-text" /></td> |
| 257 |
</tr> |
| 258 |
<tr valign="top" style="background: #efefef;"> |
| 259 |
<td> </td> |
| 260 |
<th><label for="cryptX_var[c2i_fontRGB]"><?php _e("Font color (RGB)",'cryptx'); ?></label></th> |
| 261 |
<td><input name="cryptX_var[c2i_fontRGB]" value="<?php echo $cryptX_var['c2i_fontRGB']; ?>" type="text" class="regular-text" /></td> |
| 262 |
</tr> |
| 263 |
</table> |
| 264 |
</div> |
| 265 |
<p><input type="submit" name="cryptX" class="button-primary" value="<?php _e('Save Changes') ?>" /></p> |
| 266 |
</div> |
| 267 |
</div> |
| 268 |
|
| 269 |
|
| 270 |
<div id="rw_cryptx_general_box" class="postbox"> |
| 271 |
<h3><?php _e("General",'cryptx'); ?></h3> |
| 272 |
<div class="inside"> |
| 273 |
<table class="form-table"> |
| 274 |
<tr valign="top"> |
| 275 |
<th scope="row"><?php _e("Apply CryptX to...",'cryptx'); ?></th> |
| 276 |
<td> |
| 277 |
<input name="cryptX_var[the_content]" type="checkbox" value="1" <?php checked( $cryptX_var['the_content'], 1 ); ?> /> <?php _e("Content",'cryptx'); ?> <?php _e("(<i>this can be disabled per Post by an Option</i>)",'cryptx'); ?><br/> |
| 278 |
<input name="cryptX_var[the_meta_key]" type="checkbox" value="1" <?php checked( $cryptX_var['the_meta_key'], 1 ); ?> /> <?php _e("Custom fields (<strong>works only with the_meta()!</strong>)",'cryptx'); ?><br/> |
| 279 |
<input name="cryptX_var[the_excerpt]" type="checkbox" value="1" <?php checked( $cryptX_var['the_excerpt'], 1 ); ?> /> <?php _e("Excerpt",'cryptx'); ?><br/> |
| 280 |
<input name="cryptX_var[comment_text]" type="checkbox" value="1" <?php checked( $cryptX_var['comment_text'], 1 ); ?> /> <?php _e("Comments",'cryptx'); ?><br/> |
| 281 |
<input name="cryptX_var[widget_text]" type="checkbox" value="1" <?php checked( $cryptX_var['widget_text'], 1 ); ?> /> <?php _e("Widgets",'cryptx'); ?> <?php _e("(<i>works only on all widgets, not on a single widget</i>!)",'cryptx'); ?> |
| 282 |
</td> |
| 283 |
</tr> |
| 284 |
<tr valign="top"> |
| 285 |
<th scope="row"><?php _e("Excluded ID's...",'cryptx'); ?></th> |
| 286 |
<td><input name="cryptX_var[excludedIDs]" value="<?php echo $cryptX_var['excludedIDs']; ?>" type="text" class="regular-text" /> |
| 287 |
<br/><span class="setting-description"><?php _e("Enter all Page/Post ID's to exclude from CryptX as comma seperated list.",'cryptx'); ?></span> |
| 288 |
<br/><input name="cryptX_var[metaBox]" type="checkbox" value="1" <?php checked( $cryptX_var['metaBox'], 1 ); ?> /> <?php _e("Enable the CryptX Widget on editing a post or page.",'cryptx'); ?></td> |
| 289 |
</tr> |
| 290 |
<tr valign="top"> |
| 291 |
<th scope="row"><?php _e("Type of decryption",'cryptx'); ?></th> |
| 292 |
<td><input name="cryptX_var[java]" type="radio" value="1" <?php checked( $cryptX_var['java'], 1 ); ?>/> <?php _e("Use javascript to hide the Email-Link.",'cryptx'); ?><br/> |
| 293 |
<input name="cryptX_var[java]" type="radio" value="0" <?php checked( $cryptX_var['java'], 0 ); ?>/> <?php _e("Use Unicode to hide the Email-Link.",'cryptx'); ?></td> |
| 294 |
</tr> |
| 295 |
<tr valign="top"> |
| 296 |
<th scope="row"><?php _e("Where to load the needed javascript...",'cryptx'); ?></th> |
| 297 |
<td><input name="cryptX_var[load_java]" type="radio" value="0" <?php checked( $cryptX_var['load_java'], 0 ); ?>/> <?php _e("Load the javascript in the <b>header</b> of the page.",'cryptx'); ?><br/> |
| 298 |
<input name="cryptX_var[load_java]" type="radio" value="1" <?php checked( $cryptX_var['load_java'], 1 ); ?>/> <?php _e("Load the javascript in the <b>footer</b> of the page.",'cryptx'); ?></td> |
| 299 |
</tr> |
| 300 |
<tr valign="top"> |
| 301 |
<th scope="row" colspan="2"><input name="cryptX_var[autolink]" type="checkbox" value="1" <?php checked( $cryptX_var['autolink'], 1 ); ?>/> <?php _e("Add mailto to all unlinked email addresses",'cryptx'); ?></th> |
| 302 |
</tr> |
| 303 |
<tr valign="top"> |
| 304 |
<th scope="row" colspan="2"><input name="cryptX_var_reset" type="checkbox" value="1"/> <?php _e("Reset CryptX options to defaults. Use it carefully and at your own risk. All changes will be deleted!",'cryptx'); ?></th> |
| 305 |
</tr> |
| 306 |
</table> |
| 307 |
<p><input type="submit" name="cryptX" class="button-primary" value="<?php _e('Save Changes') ?>" /></p> |
| 308 |
</div> |
| 309 |
</div> |
| 310 |
|
| 311 |
|
| 312 |
<div id="rw_encryptx_howto_box" class="postbox"> |
| 313 |
<h3><?php _e("How to use CryptX in your Template",'cryptx'); ?></h3> |
| 314 |
<div class="inside"> |
| 315 |
<table class="form-table"> |
| 316 |
<tr> |
| 317 |
<td><h4><?php _e("In your Template you can use the following function to encrypt a email address:",'cryptx'); ?></h4> |
| 318 |
<p style="border:1px solid #000; background-color: #e9e9e9;padding: 10px;"> |
| 319 |
<i><?php <br/> |
| 320 |
$content = "name@example.com"; <br/> |
| 321 |
$args = array('text' => '',<br/> |
| 322 |
'css_class' => '',<br/> |
| 323 |
'css_id' => '',<br/> |
| 324 |
'echo' => 1); <br/> |
| 325 |
if (function_exists('encryptx')) { <br/> |
| 326 |
encryptx($content, $args); <br/> |
| 327 |
} else { <br/> |
| 328 |
echo sprintf('<a href="mailto:%s" id="%s" class="%s">%s</a>', $content, $args['css_id'], $args['css_class'], ($args['text'] != '' ? $args['text'] : $content)); <br/> |
| 329 |
} <br/> |
| 330 |
?></i> |
| 331 |
</p> |
| 332 |
</td> |
| 333 |
</tr> |
| 334 |
<tr> |
| 335 |
<td><h4><?php _e("In your Template you can use the following function to encrypt mail adresses at custom fields:",'cryptx'); ?></h4> |
| 336 |
<?php _e("Replace the call of get_post_meta in yout template with the CryptX function <strong>get_encryptx_meta</strong>. The parameters are the same!<br/>1. Example:", 'cryptx'); ?><br/> |
| 337 |
<p style="border:1px solid #000; background-color: #e9e9e9;padding: 10px;"> |
| 338 |
<i> |
| 339 |
<?php <br/> |
| 340 |
foreach(get_encryptx_meta($post->ID, $key, false) as $mail) {<br/> |
| 341 |
echo $mail.'<br/>';</br/> |
| 342 |
}<br/> |
| 343 |
?> |
| 344 |
</i></p> |
| 345 |
<?php _e("2. Example:", 'cryptx'); ?><br/> |
| 346 |
<p style="border:1px solid #000; background-color: #e9e9e9;padding: 10px;"> |
| 347 |
<i> |
| 348 |
<?php echo get_encryptx_meta($post->ID, $key, true); ?> |
| 349 |
</i><br/> |
| 350 |
</p> |
| 351 |
<input type="submit" name="cryptX_rescan_theme" class="button-primary" value="<?php _e('Rescan current theme', 'cryptx') ?>" /> |
| 352 |
</td> |
| 353 |
</tr> |
| 354 |
</table> |
| 355 |
</div> |
| 356 |
</div> |
| 357 |
|
| 358 |
</form> |
| 359 |
<script type="text/javascript"> |
| 360 |
function cryptX_bild_wechsel(select){ |
| 361 |
document.getElementById("cryptXmailTo").src = select.options[select.options.selectedIndex].value; |
| 362 |
return true; |
| 363 |
} |
| 364 |
</script> |
| 365 |
<script type="text/javascript"> |
| 366 |
jQuery.ajax({ |
| 367 |
url: "<?php bloginfo('wpurl'); ?>?cryptx=news", |
| 368 |
success: function(data) { |
| 369 |
jQuery("#cryptx-news-content").html(data).fadeIn(); |
| 370 |
}, |
| 371 |
error: function() { |
| 372 |
jQuery("#cryptx-news-content").html('An error ocured while loading News.').fadeIn(); |
| 373 |
} |
| 374 |
}); |
| 375 |
</script> |
| 376 |
</div> |
| 377 |
</div> |
| 378 |
<?php } ?> |