1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
<?php
/**
* Custom skin template editing
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
*
* @package admin
* @author This file built upon code from original b2 - http://cafelog.com/
*/
/**
* Includes:
*/
require_once(dirname(__FILE__). '/_header.php');
$admin_tab = 'templates';
$admin_pagetitle = T_('Custom skin template editing');
// Check permission:
$current_User->check_perm( 'templates', '', true );
param( 'action', 'string' );
param( 'error', 'string' );
param( 'file', 'string' );
param( 'a', 'string' );
switch($action)
{
case "update":
// Determine the edit folder:
$edit_folder = get_path('skins'). '/custom';
param( 'newcontent', 'html' );
$f = fopen( $edit_folder. '/'. $file, "w+" );
fwrite($f,$newcontent);
fclose($f);
header("Location: b2template.php?file=$file&a=te");
exit();
break;
default:
require(dirname(__FILE__). '/_menutop.php');
require(dirname(__FILE__). '/_menutop_end.php');
// Determine the edit folder:
$edit_folder = get_path('skins'). '/custom';
$file = trim($file);
if( !empty($file))
{
echo '<div class="panelblock">';
echo T_('Listing:'), ' <strong>', $edit_folder, '/', $file, '</strong>';
if( ereg( '([^-A-Za-z0-9._]|\.\.)', $file ) )
{
echo '<p>', T_('Invalid filename!'), '</p>';
}
elseif( !is_file($edit_folder. '/'. $file) )
{
echo '<p>', T_('Oops, no such file !'), '</p>';
}
else
{
$f = fopen( $edit_folder. '/'. $file, 'r');
$content = fread($f,filesize($edit_folder. '/'. $file));
// $content = template_simplify($content);
$content = htmlspecialchars($content);
// $content = str_replace("</textarea","</textarea",$content);
if ($a == 'te') echo '<em> [ ', T_('File edited!'), ' ]</em>';
if (!$error) {
?>
<p><?php echo T_('Be careful what you do, editing this file could break your template! Do not edit what\'s between <code><?php</code> and <code>?></code> if you don\'t know what you\'re doing!') ?></p>
<form name="template" action="b2template.php" method="post">
<fieldset class="input"><img src="img/blank.gif" alt="" width="1" height="1" /><textarea cols="80" rows="20" class="large" name="newcontent" tabindex="1"><?php echo $content ?></textarea></fieldset>
<input type="hidden" name="action" value="update" />
<input type="hidden" name="file" value="<?php echo $file ?>" />
<br />
<?php
if( is_writable($edit_folder. '/'. $file) )
{
echo '<input type="submit" name="submit" class="SaveButton" value="', T_(' Save ! '), '" tabindex="2" />';
}
else
{
echo '<input type="button" name="oops" class="search" value="', T_('(you cannot update that file/template: must make it writable, e.g. CHMOD 766)'), '" tabindex="2" />';
}
?>
</form>
<?php
}
}
echo "</div>\n";
}
?>
<div class="panelblock">
<p><?php echo T_('This screen allows you to edit the <strong>custom skin</strong> (located under /skins/custom). ') ?></p>
<p><?php echo T_('You can edit any of the following files (provided it\'s writable by the server, e.g. CHMOD 766)') ?>:</p>
<?php
// Determine the edit folder:
if( empty($edit_folder) ) $edit_folder = get_path('skins'). '/custom';
//lists all files in edit directory
if( !is_dir($edit_folder) )
{
echo '<div class="panelinfo"><p>'.sprintf( T_('Directory %s not found.'), $edit_folder ).'</p></div>';
}
else
{ // $edit_folder exists
?><ul><?php
$this_dir = dir( $edit_folder );
while ($this_file = $this_dir->read())
{
if( is_file($edit_folder. '/'. $this_file) )
{
?>
<li><a href="b2template.php?file=<?php echo $this_file; ?>"><?php echo $this_file; ?></a>
<?php
switch( $this_file )
{
case '_archives.php':
echo '- ', T_('This is the template that displays the links to the archives for a blog');
break;
case '_categories.php':
echo '- ', T_('This is the template that displays the (recursive) list of (sub)categories');
break;
case '_feedback.php':
echo '- ', T_('This is the template that displays the feedback for a post');
break;
case '_lastcomments.php':
echo '- ', T_('This is the template that displays the last comments for a blog');
break;
case '_main.php':
echo '- ', T_('This is the main template. It displays the blog.');
break;
case 'comment_popup.php':
echo '- ', T_('This is the page displayed in the comment popup');
break;
case 'pingback_popup.php':
echo '- ', T_('This is the page displayed in the pingback popup');
break;
case 'trackback_popup.php':
echo '- ', T_('This is the page displayed in the trackback popup');
break;
}
?>
</li>
<?php }
}
?></ul><?php
}
?>
<p> <?php echo T_('Note: of course, you can also edit the files/templates in your text editor and upload them. This online editor is only meant to be used when you don\'t have access to a text editor...') ?>
</p>
</div>
<?php
break;
}
/* </Template> */
require( dirname(__FILE__). '/_footer.php' );
?>
|