File manager - Edit - /home/theblueo/tv/fb4e3b/errors.tar
Back
generic.php 0000666 00000001633 15214157003 0006676 0 ustar 00 <?php /* * Generic admin page error template */ $this->extend('../layout'); /* @var Loco_mvc_View $this */ /* @var Loco_error_Exception $error */ ?> <h1><?php echo esc_html( $error->getTitle() )?></h1> <div class="notice inline notice-error"> <h3 class="has-icon"> <?php self::e( $error->getMessage() )?> </h3><?php /* @var Loco_mvc_FileParams $file */ if( $params->has('file') && $file->line ):?> <p> <code class="path"><?php $file->e('relpath')?>#<?php $file->e('line')?></code> </p><?php endif?> </div> <?php /* @var Loco_mvc_ViewParams[] $trace */ if( $this->has('trace') ): echo "<!-- DEBUG:\n"; foreach( $trace as $f ): echo ' ',($f->has('class')?$f['class'].'::':''), $f->e('function'),' ', $f->e('file'),':',$f->e('line'), "\n"; endforeach; echo " -->\n"; endif; no-tokenizer.php 0000666 00000001721 15214157003 0007704 0 ustar 00 <?php /** * Tokenizer extension required. * Warning should also appear in the usual notices location. This page is just for information. */ $this->extend('../layout'); ?> <div class="notice inline notice-info"> <h3 class="has-icon"> <?php esc_html_e('About the Tokenizer','loco-translate')?> </h3> <p> <?php // Translators: change "en" in the URL to your language if it's available at http://php.net/docs.php esc_html_e('Loco requires the <a href="http://php.net/manual/en/book.tokenizer.php" target="_blank">Tokenizer extension</a> to scan PHP source code for translatable strings','loco-translate')?>. </p> <p><?php $help = apply_filters('loco_external','https://localise.biz/wordpress/plugin/manual/templates'); printf(__('You can still translate any bundle that has a <a href="%s" target="_blank">template</a>','loco-translate'),$help)?>. </p> </div> file-missing.php 0000666 00000000742 15214157003 0007650 0 ustar 00 <?php /** * File path not found */ $this->extend('../layout'); ?> <div class="notice inline notice-error"> <h3 class="has-icon"> <?php esc_html_e('File not found','loco-translate')?> </h3> <p> <?php esc_html_e("Either this file is missing or the server doesn't have permission to access it",'loco-translate')?>: </p> <p> <code class="path"><?php $params->e('path')?></code> </p> </div>