Changeset 1116691
- Timestamp:
- 03/20/2015 08:35:29 AM (11 years ago)
- File:
-
- 1 edited
-
actions-unveiled/branches/1.0.0/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
actions-unveiled/branches/1.0.0/readme.txt
r1116686 r1116691 19 19 Allow to track hooks and debug messages during page life cycle. 20 20 21 Target Audience 22 --------------- 21 **Target Audience** 23 22 24 23 This plugin is suited for **developpers**. 25 24 26 Features 27 -------- 25 **Features** 28 26 29 27 * Tree view of hooks … … 64 62 **A.** Simply add the following php code block with your message: 65 63 66 if (defined('BE_MCH_ACTUNV')) { 67 // new \BE_MCH_ACTUNV_messenger 68 new BE_MCH_ACTUNV_messenger('<your message>'); 69 } 64 `<?php 65 if (defined('BE_MCH_ACTUNV')) { 66 new BE_MCH_ACTUNV_messenger('<your message>'); 67 } 68 ?>` 70 69 71 70 Note: don't forget the backslash if you're inside a namespace. 72 71 73 new\ BE_MCH_ACTUNV_messenger('<your message>'); 72 `<?php new \BE_MCH_ACTUNV_messenger('<your message>'); ?>` 74 73 75 74 == Changelog ==
Note: See TracChangeset
for help on using the changeset viewer.