Skip to content

Commit 2b887c3

Browse files
committed
update
1 parent b83667b commit 2b887c3

File tree

5 files changed

+6113
-5950
lines changed

5 files changed

+6113
-5950
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,7 @@ UPDATED: Posts per page changed to 20 for componants, templates and texonomies
109109
REMOVED: Removed PWA functionality. Created a separate plugin for PWA
110110

111111
## 1.7.0.0 29-01-2021
112-
UPDATED: PHP 7.4 compatibility
112+
UPDATED: PHP 7.4 compatibility
113+
114+
## 1.8.0.0 27-05-2021
115+
ADDED: contact_info shortcode

admin/partials/aione-app-builder-admin-shortcodes-table.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,19 @@
721721
'style' => 'html', // html/none | to show html or raw nummber
722722
'theme' => 'dark', // dark or light theme
723723

724+
</pre>
725+
</td>
726+
</tr>
727+
<tr>
728+
<td>Aione Map</td>
729+
<td>[aione_map]</td>
730+
<td>
731+
<pre>
732+
'zoom' => '10',
733+
'height' => '300',
734+
'address' => 'OXO Solutions, Amritsar',
735+
'api_key' => '',
736+
724737
</pre>
725738
</td>
726739
</tr>

aione-app-builder.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Aione App Builder
1111
* Plugin URI: http://oxosolutions.com/products/wordpress-plugins/aione-app-builder/
1212
* Description: Easily create custom post types and taxonomy and connect everything together.
13-
* Version: 1.7.0.0
13+
* Version: 1.8.0.0
1414
* Author: OXO Solutions®
1515
* Author URI: https://oxosolutions.com/
1616
* License: GPL-2.0+
@@ -76,6 +76,10 @@
7676
define( 'AIONE_INIT_PRIORITY', -1 );
7777
}
7878

79+
if ( !defined( 'AIONE_API_KEY' ) ) {
80+
define( 'AIONE_API_KEY', 'AIzaSyAjyDspiPfzEfjRSS5fQzm-3jHFjHxeXB4' );
81+
}
82+
7983
/**
8084
* The code that runs during plugin activation.
8185
* This action is documented in includes/class-aione-app-builder-activator.php

includes/class-aione-app-builder.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,8 @@ private function define_public_hooks() {
303303

304304

305305
$this->loader->add_shortcode( 'variable', $plugin_public, 'aione_app_builder_variable_shortcode' );
306+
307+
$this->loader->add_shortcode( 'aione_map', $plugin_public, 'aione_app_builder_map_shortcode' );
306308
// $this->loader->add_shortcode( 'if', $plugin_public, 'aione_app_builder_if_shortcode' );
307309

308310
// POST SHORTCODES
@@ -348,9 +350,12 @@ private function define_public_hooks() {
348350
$this->loader->add_shortcode( 'fields', $plugin_public, 'aione_app_builder_fields_shortcode' );
349351

350352
$this->loader->add_shortcode( 'visit_counter', $plugin_public, 'aione_app_builder_visit_counter_shortcode' );
353+
351354
$this->loader->add_shortcode( 'export', $plugin_public, 'aione_app_builder_export_shortcode' );
352355

353356
$this->loader->add_shortcode( 'import', $plugin_public, 'aione_app_builder_import_shortcode' );
357+
358+
$this->loader->add_shortcode( 'contact_info', $plugin_public, 'aione_app_builder_contact_info_shortcode' );
354359

355360
}
356361

0 commit comments

Comments
 (0)