Title: EfficiencyNext Data Connector
Author: EfficiencyNext
Published: <strong>मार्च 3, 2026</strong>
Last modified: मार्च 27, 2026

---

प्लगइन शोधा

![](https://s.w.org/plugins/geopattern-icon/efficiencynext-data-connector.svg)

# EfficiencyNext Data Connector

 [EfficiencyNext](https://profiles.wordpress.org/efficiencynext/) कडून

[डाउनलोड करा](https://downloads.wordpress.org/plugin/efficiencynext-data-connector.1.0.1.zip)

 * [तपशील](https://mr.wordpress.org/plugins/efficiencynext-data-connector/#description)
 * [पुनरावलोकने](https://mr.wordpress.org/plugins/efficiencynext-data-connector/#reviews)
 *  [इंस्टॉलेशन](https://mr.wordpress.org/plugins/efficiencynext-data-connector/#installation)
 * [डेव्हलोपमेंट](https://mr.wordpress.org/plugins/efficiencynext-data-connector/#developers)

 [समर्थन](https://wordpress.org/support/plugin/efficiencynext-data-connector/)

## वर्णन

EfficiencyNext Data Connector is a modern, lightweight WordPress plugin that lets
you fetch data from external APIs and display it in your posts and pages using simple
placeholders, shortcodes, and Mustache-style templates.

**Key Features:**

 * **Zero Dependencies** – No external libraries required, pure PHP 8.0+ code
 * **PHP 8.3 Compatible** – Built from the ground up for modern PHP
 * **Shortcode Support** – Use `[effcncynxtdc source="Name"]` in your content
 * **Mustache-style Templates** – Familiar `{{variable}}` syntax
 * **Loop Support** – Iterate over arrays with `{{#items}}...{{/items}}`
 * **Secure** – All output is HTML-escaped, templates are sanitized with wp_kses
 * **Smart Admin Interface** – Add, edit, and delete data sources with a modern 
   UI
 * **API Preview** – Test your API endpoints and discover available fields right
   in the editor
 * **Template Helpers** – Insert common template patterns with one click
 * **Translation Ready** – Fully internationalized with text domain and language
   file support

**Template Syntax:**

 * `{{variable}}` – Display a simple value
 * `{{#section}}...{{/section}}` – Loop over arrays or conditional sections
 * `{{^section}}...{{/section}}` – Show content when a value is empty or missing
 * `{{.}}` – Current item in a simple loop
 * `{{object.property}}` – Access nested properties with dot notation

**Shortcode Usage:**

 * `[effcncynxtdc source="SourceName"]` – Render a configured data source
 * `[effcncynxtdc source="SourceName" url="https://..."]` – Override the API URL
 * `[effcncynxtdc source="SourceName" template="<b>{{name}}</b>"]` – Override the
   template
 * `[effcncynxtdc_inline source="SourceName"]` – For inline usage

### Configuration

 1. Click **Add New Source** to create a data source
 2. Enter a **Source Name** (used with shortcodes and for identification)
 3. A **Placeholder** is auto-generated (e.g., `{{Positions}}`) – this goes in your
    page/post content
 4. Enter your **API URL** that returns JSON data
 5. Click **Preview API** to see the JSON response and available template fields
 6. Create your **Template** using Mustache-style syntax – click the available fields
    to insert them
 7. Toggle **Inline** if the placeholder appears within a paragraph

## स्थापना

 1. Upload the `efficiencynext-data-connector` folder to `/wp-content/plugins/`
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Go to **Settings  Data Connector** in the admin menu to configure your data sources

## नेहमी विचारले जाणारे प्रश्न

### What PHP version is required?

PHP 8.0 or higher is required. The plugin is fully tested with PHP 8.3.

### How do I use shortcodes?

Add `[effcncynxtdc source="YourSourceName"]` in your post or page content. The source
name must match a configured data source. You can optionally override the URL or
template via shortcode attributes.

### Can I use dynamic URLs?

Yes! You can use query parameters in your API URLs. For example:
 https://api.example.
com/data?id={{id}}

The `{{id}}` will be replaced with the `id` query parameter from the current page
URL.

### How do I loop over an array?

Use section tags:

    ```
    {{#items}}<li>{{name}}</li>{{/items}}
    ```

### Is the output secure?

Yes. All variable output is automatically HTML-escaped to prevent XSS attacks. Templates
are sanitized using WordPress’s wp_kses function, which strips dangerous HTML tags
like script, iframe, and form elements while preserving safe formatting tags.

### Can I translate the plugin?

Yes! EfficiencyNext Data Connector is fully internationalized. Place your translation
files in the `wp-content/plugins/efficiencynext-data-connector/languages/` directory
using the text domain `efficiencynext-data-connector` (e.g., `efficiencynext-data-
connector-fr_FR.po`). All admin interface strings, including JavaScript-rendered
text, are translatable.

### What HTML tags are allowed in templates?

Templates support common structural and formatting tags including: table elements,
divs, spans, paragraphs, headings, lists, links, images, strong, em, code, pre, 
and semantic HTML5 elements. Script, iframe, form, and other potentially dangerous
tags are stripped.

## समीक्षा

ह्या प्लगइनसाठी कोणतेही समीक्षण नाही.

## योगदानकर्ते आणि विकसक

“EfficiencyNext Data Connector” हे मुक्त स्रोत सॉफ्टवेअर आहे. पुढील लोक या प्लगइनच्या
निर्मितीत योगदान केले आहे.

योगदानकर्ते

 *   [ EfficiencyNext ](https://profiles.wordpress.org/efficiencynext/)

[भाषांतर करा “EfficiencyNext Data Connector” तुमच्या भाषेत.](https://translate.wordpress.org/projects/wp-plugins/efficiencynext-data-connector)

### विकासातील आग्रह?

[कोड ब्राउझ करा](https://plugins.trac.wordpress.org/browser/efficiencynext-data-connector/),
[SVN संग्रहालय](https://plugins.svn.wordpress.org/efficiencynext-data-connector/)
तपासा, किंवा [विकास लॉग](https://plugins.trac.wordpress.org/log/efficiencynext-data-connector/)
च्या [RSS](https://plugins.trac.wordpress.org/log/efficiencynext-data-connector/?limit=100&mode=stop_on_copy&format=rss)
द्वारे सदस्यता घ्या.

## बदलांची यादी

#### 1.0.0

 * Initial release for WordPress.org
 * Modern admin interface with add/edit/delete source management
 * AJAX-powered settings with modal editor
 * API preview with automatic field discovery
 * Template helper toolbar with common patterns
 * WordPress shortcode support: [effcncynxtdc] and [effcncynxtdc_inline]
 * Input sanitization: wp_kses for templates, esc_url_raw for URLs, placeholder 
   validation
 * Mustache-style template engine with loops, conditionals, inverted sections, and
   dot notation
 * Zero external dependencies, PHP 8.0+ compatible
 * Full internationalization (i18n) with load_plugin_textdomain and translatable
   JavaScript strings
 * Automatic migration from pre-release storage format

#### 1.0.1

 * Added support for Basic Authentication and API Key Authentication

## मेटा

 *  आवृत्ती **1.0.0**
 *  शेवटचा अद्यतन **2 महिने पूर्वी**
 *  सक्रिय स्थापना **10 पेक्षा कमी**
 *  वर्डप्रेस आवृत्ती ** 6.0 किंवा मोठा **
 *  परीक्षित केले आहे **6.9.4**
 *  PHP आवृत्ती ** 8.0 किंवा मोठा **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/efficiencynext-data-connector/)
 * टॅग्ज:
 * [api](https://mr.wordpress.org/plugins/tags/api/)[JSON](https://mr.wordpress.org/plugins/tags/json/)
   [rest](https://mr.wordpress.org/plugins/tags/rest/)[template](https://mr.wordpress.org/plugins/tags/template/)
 *  [प्रगत दृश्य](https://mr.wordpress.org/plugins/efficiencynext-data-connector/advanced/)

## मूल्यांकन

अजून कोणतीही पुनरावलोकने सबमिट केलेली नाहीत.

[Your review](https://wordpress.org/support/plugin/efficiencynext-data-connector/reviews/#new-post)

[सर्व पुनरावलोकने पहा](https://wordpress.org/support/plugin/efficiencynext-data-connector/reviews/)

## योगदानकर्ते

 *   [ EfficiencyNext ](https://profiles.wordpress.org/efficiencynext/)

## समर्थन

काहीतरी सांगायचं आहे का? मदतीची आवश्यकता आहे का?

 [समर्थन फोरम पहा](https://wordpress.org/support/plugin/efficiencynext-data-connector/)