API15

JLog/addEntry: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 76: Line 76:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=addEntry
  category=addEntry
  category=JLog
  category=JLog
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 00:56, 25 March 2017

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

addEntry($entry)
Parameter Name Default Value Description
$entry

Defined in

libraries/joomla/error/log.php

Importing

jimport( 'joomla.error.log' );

Source Body

function addEntry($entry)
{
        // Set some default field values if not already set.
        $date =& JFactory::getDate();
        if (!isset ($entry['date'])) {

                $entry['date'] = $date->toFormat("%Y-%m-%d");
        }
        if (!isset ($entry['time'])) {

                $entry['time'] = $date->toFormat("%H:%M:%S");
        }
        if (!isset ($entry['c-ip'])) {
                $entry['c-ip'] = $_SERVER['REMOTE_ADDR'];
        }

        // Ensure that the log entry keys are all uppercase
        $entry = array_change_key_case($entry, CASE_UPPER);

        // Find all fields in the format string
        $fields = array ();
        $regex = "/{(.*?)}/i";
        preg_match_all($regex, $this->_format, $fields);

        // Fill in the field data
        $line = $this->_format;
        for ($i = 0; $i < count($fields[0]); $i++)
        {
                $line = str_replace($fields[0][$i], (isset ($entry[$fields[1][$i]])) ? $entry[$fields[1][$i]] : "-", $line);
        }

        // Write the log entry line
        if ($this->_openLog())
        {
                if (!fputs($this->_file, "\n" . $line)) {
                        return false;
                }
        } else {
                return false;
        }
        return true;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples