Prepared for: POS integration team
Date prepared: 2026-05-01
Window analysed: 2026-04-30 10:14 UTC → 2026-05-01 09:31 UTC (~23 hours)
Source: Server-side access logs for the WordPress origin behind api.gqmobiles.lk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin: Latest Post Time (cache-safe) | |
| * Version: 1.1 | |
| */ | |
| /* ========= core helper ========= */ | |
| function rl_latest_post_relative_time() { | |
| $posts = get_posts( array( | |
| 'posts_per_page' => 1, |
API is the acronym for Application Programming Interface, which is a software intermediary that allows two applications to talk to each other.
API works through Endpoints, Endpoints are set of codes which runs back and forth in order accomplish a specific task.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const reel = require('node-reel') | |
| reel().call(() => { | |
| console.log('my friend is here to remind me') | |
| }).weekends().at('16:00').run() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const reel = require('node-reel') | |
| reel().command('npm run clean_trash').everyThirtyMinutes().run() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Disable Directory listing | |
| Options -Indexes | |
| # block files which needs to be hidden // in here specify .example extension of the file | |
| <Files ~ "\.(env|json|config.js|md|gitignore|gitattributes|lock)$"> | |
| Order allow,deny | |
| Deny from all | |
| </Files> | |
| # in here specify full file name sperator '|' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using Microsoft.Reporting.WinForms; | |
| using System.Reflection; | |
| using System.Drawing.Printing; | |
| using System.IO; | |
| using System.Drawing.Imaging; | |
| using System.Drawing; |