PageRenderTime 43ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/df_home/static/test/portalbkd/wp-admin/theme-editor.php

https://gitlab.com/darmawan.fatria/df-skp-2014
PHP | 241 lines | 201 code | 32 blank | 8 comment | 46 complexity | 4e47516edb5d0f2ff241ee455fab19fc MD5 | raw file
  1. <?php
  2. /**
  3. * Theme editor administration panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once( dirname( __FILE__ ) . '/admin.php' );
  10. if ( is_multisite() && ! is_network_admin() ) {
  11. wp_redirect( network_admin_url( 'theme-editor.php' ) );
  12. exit();
  13. }
  14. if ( !current_user_can('edit_themes') )
  15. wp_die('<p>'.__('You do not have sufficient permissions to edit templates for this site.').'</p>');
  16. $title = __("Edit Themes");
  17. $parent_file = 'themes.php';
  18. get_current_screen()->add_help_tab( array(
  19. 'id' => 'overview',
  20. 'title' => __('Overview'),
  21. 'content' =>
  22. '<p>' . __('You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.') . '</p>
  23. <p>' . __('Begin by choosing a theme to edit from the dropdown menu and clicking Select. A list then appears of all the template files. Clicking once on any file name causes the file to appear in the large Editor box.') . '</p>
  24. <p>' . __('For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.') . '</p>
  25. <p id="newcontent-description">' . __( 'In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key. In some cases the Esc key will need to be pressed twice before the Tab key will allow you to continue.' ) . '</p>
  26. <p>' . __('After typing in your edits, click Update File.') . '</p>
  27. <p>' . __('<strong>Advice:</strong> think very carefully about your site crashing if you are live-editing the theme currently in use.') . '</p>
  28. <p>' . sprintf( __('Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a <a href="%s" target="_blank">child theme</a> instead.'), __('https://codex.wordpress.org/Child_Themes') ) . '</p>' .
  29. ( is_network_admin() ? '<p>' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '</p>' : '' )
  30. ) );
  31. get_current_screen()->set_help_sidebar(
  32. '<p><strong>' . __('For more information:') . '</strong></p>' .
  33. '<p>' . __('<a href="https://codex.wordpress.org/Theme_Development" target="_blank">Documentation on Theme Development</a>') . '</p>' .
  34. '<p>' . __('<a href="https://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>') . '</p>' .
  35. '<p>' . __('<a href="https://codex.wordpress.org/Editing_Files" target="_blank">Documentation on Editing Files</a>') . '</p>' .
  36. '<p>' . __('<a href="https://codex.wordpress.org/Template_Tags" target="_blank">Documentation on Template Tags</a>') . '</p>' .
  37. '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  38. );
  39. wp_reset_vars( array( 'action', 'error', 'file', 'theme' ) );
  40. if ( $theme )
  41. $stylesheet = $theme;
  42. else
  43. $stylesheet = get_stylesheet();
  44. $theme = wp_get_theme( $stylesheet );
  45. if ( ! $theme->exists() )
  46. wp_die( __( 'The requested theme does not exist.' ) );
  47. if ( $theme->errors() && 'theme_no_stylesheet' == $theme->errors()->get_error_code() )
  48. wp_die( __( 'The requested theme does not exist.' ) . ' ' . $theme->errors()->get_error_message() );
  49. $allowed_files = $theme->get_files( 'php', 1 );
  50. $has_templates = ! empty( $allowed_files );
  51. $style_files = $theme->get_files( 'css' );
  52. $allowed_files['style.css'] = $style_files['style.css'];
  53. $allowed_files += $style_files;
  54. if ( empty( $file ) ) {
  55. $relative_file = 'style.css';
  56. $file = $allowed_files['style.css'];
  57. } else {
  58. $relative_file = $file;
  59. $file = $theme->get_stylesheet_directory() . '/' . $relative_file;
  60. }
  61. validate_file_to_edit( $file, $allowed_files );
  62. $scrollto = isset( $_REQUEST['scrollto'] ) ? (int) $_REQUEST['scrollto'] : 0;
  63. switch( $action ) {
  64. case 'update':
  65. check_admin_referer( 'edit-theme_' . $file . $stylesheet );
  66. $newcontent = wp_unslash( $_POST['newcontent'] );
  67. $location = 'theme-editor.php?file=' . urlencode( $relative_file ) . '&theme=' . urlencode( $stylesheet ) . '&scrollto=' . $scrollto;
  68. if ( is_writeable( $file ) ) {
  69. // is_writable() not always reliable, check return value. see comments @ http://uk.php.net/is_writable
  70. $f = fopen( $file, 'w+' );
  71. if ( $f !== false ) {
  72. fwrite( $f, $newcontent );
  73. fclose( $f );
  74. $location .= '&updated=true';
  75. $theme->cache_delete();
  76. }
  77. }
  78. wp_redirect( $location );
  79. exit;
  80. default:
  81. require_once( ABSPATH . 'wp-admin/admin-header.php' );
  82. update_recently_edited( $file );
  83. if ( ! is_file( $file ) )
  84. $error = true;
  85. $content = '';
  86. if ( ! $error && filesize( $file ) > 0 ) {
  87. $f = fopen($file, 'r');
  88. $content = fread($f, filesize($file));
  89. if ( '.php' == substr( $file, strrpos( $file, '.' ) ) ) {
  90. $functions = wp_doc_link_parse( $content );
  91. $docs_select = '<select name="docs-list" id="docs-list">';
  92. $docs_select .= '<option value="">' . esc_attr__( 'Function Name&hellip;' ) . '</option>';
  93. foreach ( $functions as $function ) {
  94. $docs_select .= '<option value="' . esc_attr( urlencode( $function ) ) . '">' . htmlspecialchars( $function ) . '()</option>';
  95. }
  96. $docs_select .= '</select>';
  97. }
  98. $content = esc_textarea( $content );
  99. }
  100. if ( isset( $_GET['updated'] ) ) : ?>
  101. <div id="message" class="updated notice is-dismissible"><p><?php _e( 'File edited successfully.' ) ?></p></div>
  102. <?php endif;
  103. $description = get_file_description( $file );
  104. $file_show = array_search( $file, array_filter( $allowed_files ) );
  105. if ( $description != $file_show )
  106. $description .= ' <span>(' . $file_show . ')</span>';
  107. ?>
  108. <div class="wrap">
  109. <h2><?php echo esc_html( $title ); ?></h2>
  110. <div class="fileedit-sub">
  111. <div class="alignleft">
  112. <h3><?php echo $theme->display('Name'); if ( $description ) echo ': ' . $description; ?></h3>
  113. </div>
  114. <div class="alignright">
  115. <form action="theme-editor.php" method="post">
  116. <strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong>
  117. <select name="theme" id="theme">
  118. <?php
  119. foreach ( wp_get_themes( array( 'errors' => null ) ) as $a_stylesheet => $a_theme ) {
  120. if ( $a_theme->errors() && 'theme_no_stylesheet' == $a_theme->errors()->get_error_code() )
  121. continue;
  122. $selected = $a_stylesheet == $stylesheet ? ' selected="selected"' : '';
  123. echo "\n\t" . '<option value="' . esc_attr( $a_stylesheet ) . '"' . $selected . '>' . $a_theme->display('Name') . '</option>';
  124. }
  125. ?>
  126. </select>
  127. <?php submit_button( __( 'Select' ), 'button', 'Submit', false ); ?>
  128. </form>
  129. </div>
  130. <br class="clear" />
  131. </div>
  132. <?php
  133. if ( $theme->errors() )
  134. echo '<div class="error"><p><strong>' . __( 'This theme is broken.' ) . '</strong> ' . $theme->errors()->get_error_message() . '</p></div>';
  135. ?>
  136. <div id="templateside">
  137. <?php
  138. if ( $allowed_files ) :
  139. if ( $has_templates || $theme->parent() ) :
  140. ?>
  141. <h3><?php _e('Templates'); ?></h3>
  142. <?php if ( $theme->parent() ) : ?>
  143. <p class="howto"><?php printf( __( 'This child theme inherits templates from a parent theme, %s.' ), '<a href="' . self_admin_url('theme-editor.php?theme=' . urlencode( $theme->get_template() ) ) . '">' . $theme->parent()->display('Name') . '</a>' ); ?></p>
  144. <?php endif; ?>
  145. <ul>
  146. <?php
  147. endif;
  148. foreach ( $allowed_files as $filename => $absolute_filename ) :
  149. if ( 'style.css' == $filename )
  150. echo "\t</ul>\n\t<h3>" . _x( 'Styles', 'Theme stylesheets in theme editor' ) . "</h3>\n\t<ul>\n";
  151. $file_description = get_file_description( $absolute_filename );
  152. if ( $file_description != basename( $filename ) )
  153. $file_description .= '<br /><span class="nonessential">(' . $filename . ')</span>';
  154. if ( $absolute_filename == $file )
  155. $file_description = '<span class="highlight">' . $file_description . '</span>';
  156. ?>
  157. <li><a href="theme-editor.php?file=<?php echo urlencode( $filename ) ?>&amp;theme=<?php echo urlencode( $stylesheet ) ?>"><?php echo $file_description; ?></a></li>
  158. <?php
  159. endforeach;
  160. ?>
  161. </ul>
  162. <?php endif; ?>
  163. </div>
  164. <?php if ( $error ) :
  165. echo '<div class="error"><p>' . __('Oops, no such file exists! Double check the name and try again, merci.') . '</p></div>';
  166. else : ?>
  167. <form name="template" id="template" action="theme-editor.php" method="post">
  168. <?php wp_nonce_field( 'edit-theme_' . $file . $stylesheet ); ?>
  169. <div><textarea cols="70" rows="30" name="newcontent" id="newcontent" aria-describedby="newcontent-description"><?php echo $content; ?></textarea>
  170. <input type="hidden" name="action" value="update" />
  171. <input type="hidden" name="file" value="<?php echo esc_attr( $relative_file ); ?>" />
  172. <input type="hidden" name="theme" value="<?php echo esc_attr( $theme->get_stylesheet() ); ?>" />
  173. <input type="hidden" name="scrollto" id="scrollto" value="<?php echo $scrollto; ?>" />
  174. </div>
  175. <?php if ( ! empty( $functions ) ) : ?>
  176. <div id="documentation" class="hide-if-no-js">
  177. <label for="docs-list"><?php _e('Documentation:') ?></label>
  178. <?php echo $docs_select; ?>
  179. <input type="button" class="button" value=" <?php esc_attr_e( 'Look Up' ); ?> " onclick="if ( '' != jQuery('#docs-list').val() ) { window.open( 'http://api.wordpress.org/core/handbook/1.0/?function=' + escape( jQuery( '#docs-list' ).val() ) + '&amp;locale=<?php echo urlencode( get_locale() ) ?>&amp;version=<?php echo urlencode( $wp_version ) ?>&amp;redirect=true'); }" />
  180. </div>
  181. <?php endif; ?>
  182. <div>
  183. <?php if ( is_child_theme() && $theme->get_stylesheet() == get_template() ) : ?>
  184. <p><?php if ( is_writeable( $file ) ) { ?><strong><?php _e( 'Caution:' ); ?></strong><?php } ?>
  185. <?php _e( 'This is a file in your current parent theme.' ); ?></p>
  186. <?php endif; ?>
  187. <?php
  188. if ( is_writeable( $file ) ) :
  189. submit_button( __( 'Update File' ), 'primary', 'submit', true );
  190. else : ?>
  191. <p><em><?php _e('You need to make this file writable before you can save your changes. See <a href="https://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.'); ?></em></p>
  192. <?php endif; ?>
  193. </div>
  194. </form>
  195. <?php
  196. endif; // $error
  197. ?>
  198. <br class="clear" />
  199. </div>
  200. <script type="text/javascript">
  201. jQuery(document).ready(function($){
  202. $('#template').submit(function(){ $('#scrollto').val( $('#newcontent').scrollTop() ); });
  203. $('#newcontent').scrollTop( $('#scrollto').val() );
  204. });
  205. </script>
  206. <?php
  207. break;
  208. }
  209. include(ABSPATH . 'wp-admin/admin-footer.php' );