Файловый менеджер - Редактировать - /home/avadvi5/public_html/WebCalendar/category.php
Ðазад
<?php // $Id: category.php,v 1.50.2.1 2013/01/24 21:15:08 cknudsen Exp $ include_once 'includes/init.php'; // Load user and global cats. load_user_categories(); if ( $CATEGORIES_ENABLED == 'N' ) { send_to_preferred_view(); exit; } // Verify that permissions allow writing to the "icons" directory. $canWrite = false; $permError = false; if ( $ENABLE_ICON_UPLOADS == 'Y' || $is_admin ) { $testFile = "icons/testWrite.txt"; $testFd = @fopen ( $testFile, "w+b", false ); @fclose ( $testFd ); $canWrite = file_exists ( $testFile ); if ( ! $canWrite ) { $permError = true; } else { @unlink ( $testFile ); } } $catIcon = $catname = $error = $idStr = ''; $catIconStr = translate ( 'Category Icon' ); $globalStr = translate ( 'Global' ); $icon_path = 'icons/'; // If editing, make sure they are editing their own (or they are an admin user). if ( ! empty ( $id ) ) { if ( empty ( $categories[$id] ) ) $error = str_replace ( 'XXX', $id, translate ( 'Invalid entry id XXX.' ) ); $catcolor = $categories[$id]['cat_color']; $catname = $categories[$id]['cat_name']; $catowner = $categories[$id]['cat_owner']; $catIcon = $icon_path . 'cat-' . $id . '.gif'; // Try PNG if GIF not found if ( ! file_exists ( $catIcon ) ) $catIcon = $icon_path . 'cat-' . $id . '.png'; $idStr = '<input name="id" type="hidden" value="' . $id . '" />'; } else $catcolor = '#000000'; $showIconStyle = ( ! empty ( $catIcon ) && file_exists ( $catIcon ) ? '' : 'display: none;' ); print_header ( array ( 'js/visible.php' ) ); echo ' <h2>' . translate ( 'Categories' ) . '</h2> ' . display_admin_link( false ); // Display permission error if found above. if ( $permError && $is_admin ) { print_error_box ( translate('The permissions for the icons directory are set to read-only') ); } $add = getGetValue ( 'add' ); if ( empty ( $add ) ) $add = 0; // Adding/Editing category. if ( ( ( $add == '1' ) || ( ! empty ( $id ) ) ) && empty ( $error ) ) { echo ' <form action="category_handler.php" method="post" name="catform" ' . 'enctype="multipart/form-data">' . $idStr . ' <table cellspacing="2" cellpadding="3"> <tr> <td width="25%"><label for="catname">' . translate ( 'Category Name' ) . '</label></td> <td colspan="3"><input type="text" name="catname" size="20" value="' . htmlspecialchars ( $catname ) . '" /></td> </tr>' . ( $is_admin && empty ( $id ) ? ' <tr> <td><label for="isglobal">' . $globalStr . ':</label></td> <td colspan="3"> <label><input type="radio" name="isglobal" value="N" ' . ( ! empty ( $catowner ) || empty ( $id ) ? ' checked = "checked"' : '' ) . ' /> ' . translate ( 'No' ) . '</label> <label><input type="radio" name="isglobal" value="Y" ' . ( empty ( $catowner ) && ! empty ( $id ) ? ' checked = "checked"' : '' ) . ' /> ' . translate ( 'Yes' ) . '</label> </td> </tr>' : '' ) . ' <tr> <td>' . print_color_input_html ( 'catcolor', translate ( 'Color' ), $catcolor ) . '</td> </tr> <tr id="cat_icon" style="' . $showIconStyle . '"> <td><label>' . $catIconStr . ':</label></td> <td colspan="3"><img src="' . $catIcon . '" name="urlpic" id="urlpic" alt="' . $catIconStr . '" /></td> </tr> <tr id="remove_icon" style="' . $showIconStyle . '"> <td><label for="delIcon">' . translate ( 'Remove Icon' ) . '</label></td> <td colspan="3"><input type="checkbox" name="delIcon" value="Y" /></td> </tr> <tr> <td colspan="4"> <label for="FileName">' . ( is_dir ( $icon_path ) && ( ( $ENABLE_ICON_UPLOADS == 'Y' || $is_admin ) && $canWrite ) ? translate ( 'Add Icon to Category' ) . '</label><br /> ' . translate ( 'Upload' ) . ' <span style="font-size:small;">' . translate ( 'GIF or PNG 6kb max' ) . '</span>: <input type="file" name="FileName" id="fileupload" size="45" ' . 'maxlength="50" value=""/> </td> </tr> </tr> <td colspan="4"> <input type="hidden" name="urlname" size="50" /> <input type="button" value="' . translate ( 'Search for existing icons' ) . '" onclick="window.open( \'icons.php\', \'icons\',\'' . 'dependent,menubar=no,scrollbars=n0,height=300,width=400,outerHeight=320' . ',outerWidth=420\' );" /> </td> </tr> </tr> <td colspan="4">' : '' ) // end test of ENABLE_ICON_UPLOADS . ' <input type="submit" name="action" value="' . ( $add == '1' ? translate ( 'Add' ) : translate ( 'Save' ) ) . '" />' . ( ! empty ( $id ) ? ' <input type="submit" name="delete" value="' . translate ( 'Delete' ) . '" onclick="return confirm( ' . translate( 'Are you sure you want to delete this entry?', true ) . '\' )" />' : '' ) . ' </td> </tr> </table> </form>'; } else if ( empty ( $error ) ) { // Displaying Categories. $global_found = false; if ( ! empty ( $categories ) ) { echo ' <ul>'; foreach ( $categories as $K => $V ) { if ( $K < 1 ) continue; $catIcon = $icon_path . 'cat-' . $K . '.gif'; if ( ! file_exists ( $catIcon ) ) $catIcon = $icon_path . 'cat-' . $K . '.png'; $catStr = '<span style="color: ' . ( ! empty ( $V['cat_color'] ) ? $V['cat_color'] : '#000000' ) . ';">' . htmlentities ( $V['cat_name'] ) . '</span>'; echo ' <li>' . ( $V['cat_owner'] == $login || $is_admin ? '<a href="category.php?id=' . $K . '">' . $catStr . '</a>' : $catStr ); if ( empty ( $V['cat_owner'] ) ) { echo '<sup>*</sup>'; $global_found = true; } echo ( file_exists ( $catIcon ) ? '<img src="' . $catIcon . '" alt="' . $catIconStr . '" title="' . $catIconStr . '" />' : '' ) . '</li>'; } echo ' </ul>'; } echo ( $global_found ? '<br /><br /> <sup>*</sup> ' . $globalStr : '' ) . ' <p><a href="category.php?add=1">' . translate ( 'Make New Category' ) . '</a></p><br />'; } echo ( ! empty ( $error ) ? print_error ( $error ) : '' ) . print_trailer(); ?>
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка