Ejemplo n.º 1
0
 /**
  * Get/Set debug information collection output file for mode = 'log'
  * 
  * Note that WP_CONTENT_DIR will be pre-pended to the value, and a slash
  * will be added to the front of the value if necessary.
  *
  * @since 2.14
  * 
  * @param	string	$file Optional. The (optional path and) file name, relative to WP_CONTENT_DIR,
  * 					or false/empty string to clear the value.
  *
  * @return	string	The previous file value, i.e., before the update, relative to WP_CONTENT_DIR
  */
 public static function mla_debug_file($file = NULL)
 {
     if (NULL === $file) {
         return self::$mla_debug_file;
     }
     $old_file = self::$mla_debug_file;
     if (empty($file)) {
         self::$mla_debug_file = NULL;
     } else {
         $first = substr($file, 0, 1);
         if ('/' != $first && '\\' != $first) {
             $file = '/' . $file;
         }
         self::$mla_debug_file = $file;
     }
     return $old_file;
 }
Ejemplo n.º 2
0
 /**
  * Load a plugin text domain and alternate debug file
  * 
  * The "add_action" for this function is in mla-plugin-loader.php, because the "initialize"
  * function above doesn't run in time.
  * Defined as public because it's an action.
  *
  * @since 1.60
  *
  * @return	void
  */
 public static function mla_plugins_loaded_action()
 {
     $text_domain = 'media-library-assistant';
     $locale = apply_filters('mla_plugin_locale', get_locale(), $text_domain);
     /*
      * To override the plugin's translation files for one, some or all strings,
      * create a sub-directory named 'media-library-assistant' in the WordPress
      * WP_LANG_DIR (e.g., /wp-content/languages) directory.
      */
     load_textdomain($text_domain, trailingslashit(WP_LANG_DIR) . $text_domain . '/' . $text_domain . '-' . $locale . '.mo');
     load_plugin_textdomain($text_domain, false, MLA_PLUGIN_BASENAME . '/languages/');
     /*
      * This must/will be repeated in class-mla-tests.php to reflect translations
      */
     MLACore::mla_localize_option_definitions_array();
     /*
      * Do not process debug options unless MLA_DEBUG_LEVEL is set in wp-config.php
      */
     if (MLA_DEBUG_LEVEL & 1) {
         /*
          * Set up alternate MLA debug log file
          */
         $error_log_name = MLACore::mla_get_option(MLACore::MLA_DEBUG_FILE);
         if (!empty($error_log_name)) {
             MLACore::mla_debug_file($error_log_name);
             /*
              * Override PHP error_log file
              */
             if ('checked' === MLACore::mla_get_option(MLACore::MLA_DEBUG_REPLACE_PHP_LOG)) {
                 $result = ini_set('error_log', WP_CONTENT_DIR . self::$mla_debug_file);
             }
         }
         /*
          * PHP error_reporting must be done later in class-mla-tests.php
          * Override MLA debug levels
          */
         MLACore::$mla_debug_level = MLA_DEBUG_LEVEL;
         $mla_reporting = trim(MLACore::mla_get_option(MLACore::MLA_DEBUG_REPLACE_LEVEL));
         if (!empty($mla_reporting)) {
             MLACore::$mla_debug_level = 0 + $mla_reporting | 1;
         }
     }
     // MLA_DEBUG_LEVEL & 1
 }