Title: Loginator
Author: Poly Plugins
Published: <strong>16 ຕຸລາ 2020</strong>
Last modified: 17 ເມສາ 2025

---

ຄົ້ນຫາປລັກອິນ

![](https://ps.w.org/loginator/assets/banner-772x250.png?rev=2401186)

ປລັກອິນນີ້ **ຍັງບໍ່ທັນໄດ້ຮັບການທົດສອບກັບ WordPress 3 ເວີຊັນຫຼັກຫຼ້າສຸດ**. ມັນອາດຈະ
ບໍ່ໄດ້ຮັບການເບິ່ງແຍງ ຫຼື ສະໜັບສະໜູນອີກຕໍ່ໄປ ແລະ ອາດມີບັນຫາການເຮັດວຽກຮ່ວມກັນເມື່ອ
ໃຊ້ກັບ WordPress ເວີຊັນທີ່ໃໝ່ກວ່າ.

![](https://ps.w.org/loginator/assets/icon-256x256.png?rev=2855661)

# Loginator

 ໂດຍ [Poly Plugins](https://profiles.wordpress.org/polyplugins/)

[ດາວໂຫຼດ](https://downloads.wordpress.org/plugin/loginator.2.0.1.zip)

 * [ລາຍລອຽດ](https://lo.wordpress.org/plugins/loginator/#description)
 * [ການຣີວິວ](https://lo.wordpress.org/plugins/loginator/#reviews)
 *  [ການຕິດຕັ້ງ](https://lo.wordpress.org/plugins/loginator/#installation)
 * [ການພັດທະນາ](https://lo.wordpress.org/plugins/loginator/#developers)

 [ການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/loginator/)

## ຄຳອະທິບາຍ

**About**
 Debugging WordPress can sometimes be a pain, our goal is to make it easy,
which is why Loginator was built with this in mind. From creating a log folder, 
to securing it from prying eyes, Loginator is here to save you time and resources,
so you can focus on creating astonishing applications. Once activated, Loginator
essentially becomes a core part of WordPress, which is why we disable deactivation
as it is highly recommended to not uninstall Loginator until you have removed all
references to the loginator function inside your WordPress installation.

**Update**
 2.0 has been released with backwards compatibility with 1.0. Your loginator
function calls will still work so you can continue to use it, or our new static 
methods.

**Functional Example**

    ```
    loginator('Logging this message', array('flag => 'd', 'id' => '', 'file' => 'logger', 'pipedream' => 'https://your-id-here.m.pipedream.net'));
    ```

**Static Method Examples**

    ```
    Loginator::emergency('log data here'); // Email triggers to site admin or configured emails
    Loginator::alert('log data here');
    Loginator::critical('log data here'); // Email triggers to site admin or configured emails
    Loginator::error('log data here');
    Loginator::warning('log data here');
    Loginator::notice('log data here');
    Loginator::info('log data here');
    Loginator::debug('log data here'); // PipeDream flag is set to true by default
    Loginator::success('log data here');
    ```

You can also pass arguments

    ```
    $args = array(
      'flag'      => 'd',
      'id'        => 23,
      'file'      => 'test',
      'pipedream' => false,
    );

    Loginator::info('log data here', $args);
    ```

Features:

 * Global Enable/Disable
 * Flags for Errors, Debug, and Info
 * Creates separate files based on flags
    Our beautiful comments follow WordPress
   Developer Standards, that when paired with Visual Studio Code or other supporting
   IDE\’s will elaborately explain how to use the loginator function
 * Auto detect if data being logged is an array and pretty prints it to the file
 * Disable Loginator deactivation to prevent function not existing errors
 * Email on CRITICAL flag
 * Pipe Dream logging

## ພາບໜ້າຈໍ

[⌊Settings⌉⌊Settings⌉[

Settings

[⌊IDE⌉⌊IDE⌉[

IDE

## ການຕິດຕັ້ງ

 1. Backup WordPress
 2. Upload the plugin files to the /wp-content/plugins/ directory, or install the plugin
    through the WordPress plugins screen directly.
 3. Activate the plugin through the ‘Plugins’ screen in WordPress

## ຄຳຖາມທີ່ພົບເລື້ອຍ

### How do I deactivate/uninstall?

Either rename or remove the Loginator plugin from `/wp-content/plugins/`

## ການຣີວິວ

ບໍ່ມີການຣີວິວສຳລັບປລັກອິນນີ້.

## ຜູ້ຮ່ວມພັດທະນາ ແລະ ຜູ້ພັດທະນາ

“Loginator” ແມ່ນຊອຟແວໂອເພັນຊອດ (Open Source). ບຸກຄົນຕໍ່ໄປນີ້ໄດ້ມີສ່ວນຮ່ວມໃນການພັດ
ທະນາປລັກອິນນີ້.

ຜູ້ຮ່ວມພັດທະນາ

 *   [ Poly Plugins ](https://profiles.wordpress.org/polyplugins/)

[ແປ “Loginator” ເປັນພາສາຂອງເຈົ້າ.](https://translate.wordpress.org/projects/wp-plugins/loginator)

### ສົນໃຈຮ່ວມພັດທະນາບໍ່?

[ເບິ່ງລະຫັດ](https://plugins.trac.wordpress.org/browser/loginator/), ກວດເບິ່ງ [ຄັງເກັບ SVN](https://plugins.svn.wordpress.org/loginator/),
ຫຼື ຕິດຕາມ [ບັນທຶກການພັດທະນາ](https://plugins.trac.wordpress.org/log/loginator/)
ຜ່ານ [RSS](https://plugins.trac.wordpress.org/log/loginator/?limit=100&mode=stop_on_copy&format=rss).

## ບັນທຶກການປ່ຽນແປງ

#### 2.0.1

 * Added: Emergency, alert, critical, error, warning, notice, info, debug, and success
   static methods
 * Added: Email on CRITICAL flag
 * Added: Pipe Dream logging
 * Added: Backwards compatibility with loginator function
 * Integrated: [Reusable Admin Panel](https://wordpress.org/plugins/reusable-admin-panel/)

#### 1.0.1

 * Bugfix: Added object handling to log the accessible non-static properties.
 * Bugfix: Line breaks and white space formatting

#### 1.0.0

 * Initial Release

## ຂໍ້ມູນກຳກັບ (Meta)

 *  ເວີຊັນ **2.0.1**
 *  ອັບເດດຫຼ້າສຸດເມື່ອ **1 ປີ ທີ່ຜ່ານມາ** ທີ່ຜ່ານມາ
 *  ການຕິດຕັ້ງທີ່ໃຊ້ງານຢູ່ **ໜ້ອຍກວ່າ 10**
 *  ເວີຊັນ WordPress ** 4.0 ຫຼື ສູງກວ່າ **
 *  ທົດສອບເຖິງເວີຊັນ **6.8.8**
 *  ເວີຊັນ PHP ** 5.4 ຫຼື ສູງກວ່າ **
 *  ພາສາ
 * [English (US)](https://wordpress.org/plugins/loginator/)
 * ແທັກ
 * [debug](https://lo.wordpress.org/plugins/tags/debug/)[developer](https://lo.wordpress.org/plugins/tags/developer/)
   [developer tool](https://lo.wordpress.org/plugins/tags/developer-tool/)[error](https://lo.wordpress.org/plugins/tags/error/)
   [logger](https://lo.wordpress.org/plugins/tags/logger/)
 *  [ມຸມມອງຂັ້ນສູງ](https://lo.wordpress.org/plugins/loginator/advanced/)

## ການໃຫ້ຄະແນນ

ຍັງບໍ່ມີການສົ່ງຄຳວິຈານເທື່ອ.

[ການທົບທວນຂອງທ່ານ](https://wordpress.org/support/plugin/loginator/reviews/#new-post)

[ເບິ່ງທັງໝົດ ການຣີວິວ](https://wordpress.org/support/plugin/loginator/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ

 *   [ Poly Plugins ](https://profiles.wordpress.org/polyplugins/)

## ການຊ່ວຍເຫຼືອ

ມີຄຳຖາມ ຫຼື ຕ້ອງການຄວາມຊ່ວຍເຫຼືອບໍ່?

 [ເບິ່ງຟໍຣັມການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/loginator/)