Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/system.tar
Назад
images/calendar.png 0000604 00000001120 15245530554 0010266 0 ustar 00 �PNG IHDR �a IDATx����I���}�c۶K��b�rl뿈�۶}w��ۙ�,�U���L�&+���O'Cm�����?jnP���he�"Gf�-]; @�vr�!��]� <Zp9q�0����<���w��ף�{���`�@�l~FB|����� Wi>�|L�?�H�H���<y �| P!�%E�ӳa�ݧ[�<�8�rXu�>���aݡ������/�}1�(Vy��f�������ݟ�!��d�H � ;7��Ξ�(:��!�����ʔ(�m;���',���=0Bpq㱇~4�C� ���(�ō��p<�/��6�OJ������́�P�HQ�ߺ�5��e�m�r�9)�$�F}AIHsl���p��-,,��~�+ b���sҒb�J��X�0�!4��E�3����u�M�q���\������S��c��W�!T,�ĿO�R"O<7�{E��.�y����圴��S��!�I#�}S�\�ђ����� ���[��� ��A�3f�vI IEND�B`� html/modules.php 0000604 00000005415 15245530554 0007702 0 ustar 00 <?php /** * @package Joomla.Administrator * @subpackage Template.system * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /* * none (output raw module content) */ function modChrome_none($module, &$params, &$attribs) { echo $module->content; } /* * html5 (chosen html5 tag and font header tags) */ function modChrome_html5($module, &$params, &$attribs) { $moduleTag = $params->get('module_tag'); $headerTag = htmlspecialchars($params->get('header_tag'), ENT_COMPAT, 'UTF-8'); $headerClass = $params->get('header_class'); $bootstrapSize = $params->get('bootstrap_size'); $moduleClass = !empty($bootstrapSize) ? ' span' . (int) $bootstrapSize . '' : ''; $moduleClassSfx = htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); if (!empty ($module->content)) { $html = "<{$moduleTag} class=\"moduletable{$moduleClassSfx} {$moduleClass}\">"; if ((bool) $module->showtitle) { $html .= "<{$headerTag} class=\"{$headerClass}\">{$module->title}</{$headerTag}>"; } $html .= $module->content; $html .= "</{$moduleTag}>"; echo $html; } } /* * xhtml (divs and font header tags) * With the new advanced parameter it does the same as the html5 chrome */ function modChrome_xhtml($module, &$params, &$attribs) { $moduleTag = $params->get('module_tag', 'div'); $headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_COMPAT, 'UTF-8'); $bootstrapSize = (int) $params->get('bootstrap_size', 0); $moduleClass = $bootstrapSize != 0 ? ' span' . $bootstrapSize : ''; // Temporarily store header class in variable $headerClass = $params->get('header_class'); $headerClass = $headerClass ? ' class="' . htmlspecialchars($headerClass, ENT_COMPAT, 'UTF-8') . '"' : ''; $content = trim($module->content); if (!empty ($content)) : ?> <<?php echo $moduleTag; ?> class="module<?php echo htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8') . $moduleClass; ?>"> <?php if ($module->showtitle != 0) : ?> <<?php echo $headerTag . $headerClass . '>' . $module->title; ?></<?php echo $headerTag; ?>> <?php endif; ?> <?php echo $content; ?> </<?php echo $moduleTag; ?>> <?php endif; } /* * allows sliders */ function modChrome_sliders($module, &$params, &$attribs) { $content = trim($module->content); if (!empty($content)) { echo JHtml::_('sliders.panel', $module->title, 'module' . $module->id); echo $content; } } /* * allows tabs */ function modChrome_tabs($module, &$params, &$attribs) { $content = trim($module->content); if (!empty($content)) { echo JHtml::_('tabs.panel', $module->title, 'module' . $module->id); echo $content; } } css/system.css 0000604 00000002631 15245530554 0007400 0 ustar 00 /** * @copyright (C) 2010 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /* System Messages */ #system-message { margin-bottom: 10px; padding: 0; } #system-message > dt { font-weight: bold; display: none; } #system-message > dd { margin: 0; font-weight: bold; text-indent: 30px; } #system-message > dd > ul { color: #0055BB; background-position: 4px top; background-repeat: no-repeat; margin-bottom: 10px; list-style: none; padding: 10px; border-top: 3px solid #84A7DB; border-bottom: 3px solid #84A7DB; } #system-message > dd > ul > li { line-height: 1.5em; } /* System Standard Messages */ #system-message > .message > ul { background-color: #C3D2E5; background-image: url(../images/notice-info.png); } /* System Error Messages */ #system-message > .error > ul, #system-message > .warning > ul, #system-message > .notice > ul { color: #c00; } #system-message > .error > ul { background-color: #E6C0C0; background-image: url(../images/notice-alert.png); border-color: #DE7A7B; } /* System Warning Messages */ #system-message > .warning > ul { background-color: #E6C8A6; background-image: url(../images/notice-note.png); border-color: #FFBB00; } /* System Notice Messages */ #system-message > .notice > ul { background-color: #EFE7B8; background-image: url(../images/notice-note.png); border-color: #F0DC7E; } css/error.css 0000604 00000001462 15245530554 0007206 0 ustar 00 /** * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ .outline { border: 1px solid #cccccc; background: #ffffff; padding: 2px; } body { margin: 15px; height: 100%; padding: 0; font-family: Arial, Helvetica, Sans Serif; font-size: 11px; color: #333333; background: #ffffff; } .frame { background-color: #FEFCF3; padding: 8px; border: solid 1px #000000; margin-top: 13px; margin-bottom: 25px; } h1 { color: #cc3333; font-size: 18px; } .table { border-collapse: collapse; margin-top: 13px; } td { padding: 3px; padding-left: 5px; padding-right: 5px; border: solid 1px #bbbbbb; font-size: 10px; } .type { background-color: #cc0000; color: #ffffff; font-weight: bold; padding: 3px; } error.php 0000604 00000005405 15245530554 0006416 0 ustar 00 <?php /** * @package Joomla.Administrator * @subpackage Template.system * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentError $this */ ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <meta charset="utf-8" /> <title><?php echo $this->error->getCode(); ?> - <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></title> <link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/error.css" rel="stylesheet" /> <!--[if lt IE 9]><script src="<?php echo JUri::root(true); ?>/media/jui/js/html5.js"></script><![endif]--> </head> <body> <table class="outline" style="margin: 0 auto; width: 550px;"> <tr> <td style="text-align: center;"> <h1><?php echo $this->error->getCode() ?> - <?php echo JText::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?></h1> </td> </tr> <tr> <td style="text-align: center;"> <p> <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?> <?php if ($this->debug) : ?> <br/><?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->error->getLine(); ?> <?php endif; ?> </p> <p><a href="<?php echo JRoute::_('index.php'); ?>"><?php echo JText::_('JGLOBAL_TPL_CPANEL_LINK_TEXT'); ?></a></p> <?php if ($this->debug) : ?> <div> <?php echo $this->renderBacktrace(); ?> <?php // Check if there are more Exceptions and render their data as well ?> <?php if ($this->error->getPrevious()) : ?> <?php $loop = true; ?> <?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?> <?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions ?> <?php $this->setError($this->_error->getPrevious()); ?> <?php while ($loop === true) : ?> <p><strong><?php echo JText::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p> <p> <?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?> <br/><?php echo htmlspecialchars($this->_error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->_error->getLine(); ?> </p> <?php echo $this->renderBacktrace(); ?> <?php $loop = $this->setError($this->_error->getPrevious()); ?> <?php endwhile; ?> <?php // Reset the main error object to the base error ?> <?php $this->setError($this->error); ?> <?php endif; ?> </div> <?php endif; ?> </td> </tr> </table> </body> </html> component.php 0000604 00000001335 15245530554 0007265 0 ustar 00 <?php /** * @package Joomla.Administrator * @subpackage Template.system * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ // Output as HTML5 $this->setHtml5(true); // Add html5 shiv JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <jdoc:include type="head" /> </head> <body class="contentpane"> <jdoc:include type="message" /> <jdoc:include type="component" /> </body> </html> index.php 0000604 00000000461 15245530554 0006371 0 ustar 00 <?php /** * @package Joomla.Administrator * @subpackage Template.system * * @copyright (C) 2007 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; include __DIR__ . '/component.php'; images/indent.png 0000604 00000000131 15245551513 0007775 0 ustar 00 �PNG IHDR �Y� tRNS �[�"� IDATxc���Z���: �N�5ȏ� IEND�B`� images/notice-info.png 0000604 00000002122 15245551513 0010730 0 ustar 00 �PNG IHDR V�g IDATx���RSg�WN$4����K�%p �x\B9�A���19�)A��B��� EGQN��c�cg�?o�)!;�f�Y߷ֻ�;{�M_#)|��C�7��p��X����Q���3~˃c\�x��"�ɘǣ�����h4�`��fވ�>�}by&��#h���o��/a\�yߎ��2v k��Q �x6�� =a�~(�wi����@��0�&���i�gi`�0�#��W�:/nط��؏��a�=���3�=���5ѓ5Z��@Ùw]�X�Z2z�@=�d��:��d�5ы�T�y`_d�����m��w��V�kԾ��Q�н�V�D/A˻`����$eǎ�Rf��{�kԩk@�l�5�@-�\���poA۵%�eӶW�����Y��u6 "��m8f��0r�»lں�r�tgH���K���%8'sw Y���L��=l�̰N��������i5FMkP��2?Y��wF�H0�M��T���5��oK6����8�@�@u��\J|R�"�%���6����]o�Q���^�� C�>�jg@ �i��%�L�����꧈��O��9b�ٴs*F۰(� �7瑖����{���Τ��ֿ���`z�yPwc���|�|8n<|��jfE?%��� ��_��O�9�� ��)~��Mm+ Ǵ�D��k��L�䘲fTOC[5��~J��r��8Y�'A�r�*]��i�+峏RF�d�X����l�J}p<^N0uV�|�����@��D=�sL�P���^�0;�i٘Um�����l�/l�9��]m����>꣏F�Ǧ)�R9�}� ��>P��G�lF�[ށm�${/��G�N�P>s�*�� QɠD�"�[S솹�&{t%�l�]m�2m����ڵ.���XXod=�E=FE�V��(l�QA+����p��S�K��d�t�5�{f���3� �g�g��F+�� 0�6�p���{q���i �A���E"��Jy�9)�>��1�X��H�5�Ŀ~� �M�P IEND�B`� images/sort1.png 0000604 00000000240 15245551513 0007565 0 ustar 00 �PNG IHDR ��(� tRNS �[�"� YIDATxc�� �U�755��=�(t�����d�w��������6�����0���c�>������~����� ��C��� �m�/��� IEND�B`� images/mootree_loader.gif 0000604 00000001040 15245551513 0011475 0 ustar 00 GIF89a � ������������Ю��|||���!�NETSCAPE2.0 !� � , @D8��n�)(�����qSw� fL8�a�r���Bw Qj��$�a�|��c�E.��X���� !� , >pHa��xD��!�%lc!!,{��� t>y�@��h*J�F�Ci|�@�z�M# !� , 88�#�pC���h}�݀w4[� �Q,' (D(δ� �R;�D��8��& �D�W$ !� , 9p�I��(���&��q�}� �e,\���xl�'���(���" � !� , =�I�5Kq�-�� �x@�FQz�a�C �a�D|��7�ɂ#A���E��� D &K� !� , 98�p��2H��hu_�Z�9����,�&