Advertisement
Guest User

Untitled

a guest
Mar 8th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.5.0
  8. * @ Author : DeZender
  9. * @ Release on : 09.06.2012
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function wp_ayesoft_menu() {
  15. add_menu_page( __( 'ayesoft panel', 'ayesoft' ), __( 'ayesoft panel', 'ayesoft' ), 6, basename( __FILE__ ), 'wp_ayesoft_admin', get_bloginfo( 'template_url' ) . '/images/adminpaneli.png' );
  16. add_submenu_page( basename( __FILE__ ), __( 'ayesoft Ayarlar', 'ayesoft' ), __( 'ayesoft Ayarlar', 'ayesoft' ), 6, basename( __FILE__ ), 'wp_ayesoft_admin' );
  17. }
  18.  
  19. function wp_ayesoft_admin_css() {
  20. echo '
  21. ';
  22. }
  23.  
  24. function wp_ayesoft_admin() {
  25. global $ayesoft_options;
  26.  
  27. if ($_POST['save_ayesoft_options']) {
  28. foreach ($ayesoft_options as $section) {
  29. [0];
  30. foreach ($section[1] as $option) {
  31. [0];
  32. update_option( $option[0], stripslashes( $_POST[$option[0]] ) );
  33. }
  34. }
  35.  
  36. echo '<div id="message" class="updated fade"><p><strong>' . __( 'Ayarlarınız kaydedildi :)', 'ayesoft' ) . '</strong></p></div>';
  37. }
  38.  
  39. echo ' ';
  40. echo '<s';
  41. echo 'cript type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.js"></script>
  42. <div class="wrap">
  43. <h2>';
  44. _e( 'ayesoft Film Teması Yönetim Paneli', 'ayesoft' );
  45. echo '</h2>
  46. ';
  47. echo '<s';
  48. echo 'cript>
  49. function getir(x)
  50. {
  51. $(\'.yazi\').hide();
  52. $(\'.yaz\'+x).show();
  53. $(\'.baslik\').css(\'background\',\'#111\');
  54. $(\'.bas\'+x).css(\'background\',\'#333\');
  55. }
  56. </script>
  57. <form method="post" action="admin.php?page=adminpaneli.php" id="ayesoft_form">
  58. ';
  59. .............................................................................
  60. ..............................
  61. ...............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement