-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
1,337 additions
and
749 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# editorconfig.org | ||
|
||
# WordPress Coding Standards | ||
# https://make.wordpress.org/core/handbook/coding-standards/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
tab_width = 4 | ||
indent_style = tab | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.txt] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{md,json,yml}] | ||
trim_trailing_whitespace = false | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.json] | ||
indent_style = tab |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Items to ignore when downloading release | ||
|
||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.scrutinizer.yml export-ignore | ||
composer.json export-ignore | ||
composer.lock export-ignore | ||
CONTRIBUTING.md export-ignore | ||
phpunit.xml export-ignore | ||
README.md export-ignore | ||
/tests/ export-ignore | ||
/.idea/ export-ignore | ||
*.map export-ignore |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file modified
0
assets/fonts/josefin_sans/JosefinSans-Italic-VariableFont_wght.woff2
100644 → 100755
Empty file.
Empty file.
Empty file modified
0
assets/fonts/montserrat/Montserrat-Italic-VariableFont_wght.woff2
100644 → 100755
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<?php | ||
|
||
if ( class_exists( 'BlockStrap_Admin' ) ) { | ||
|
||
|
||
class BlockStrap_Admin_Child extends BlockStrap_Admin { | ||
public function __construct() { | ||
parent::__construct(); | ||
} | ||
|
||
/** | ||
* Get the theme title. | ||
* | ||
* @return string|null | ||
*/ | ||
public function get_theme_title() { | ||
return __( 'Events Directory', 'events-directory' ); | ||
} | ||
|
||
/** | ||
* Get the array of demo pages. | ||
* | ||
* @return array[] | ||
*/ | ||
public function get_demo_pages() { | ||
return array( | ||
'contact' => array( | ||
'title' => __( 'Contact Us', 'events-directory' ), | ||
'slug' => 'contact', | ||
'desc' => $this->get_template_content( dirname( __FILE__ ) . '/../patterns/contact-page.php' ), | ||
), | ||
'blog' => array( | ||
'title' => __( 'Our Blog', 'events-directory' ), | ||
'slug' => 'blog', | ||
'desc' => $this->get_template_content( dirname( __FILE__ ) . '/../patterns/blog-page.php' ), | ||
'is_blog' => true, | ||
), | ||
); | ||
} | ||
|
||
/** | ||
* Get the required plugins details array. | ||
* | ||
* @return array | ||
*/ | ||
public function get_required_plugins() { | ||
return array( | ||
'blockstrap-page-builder-blocks' => __( 'BlockStrap Builder', 'events-directory' ), | ||
'geodirectory' => __( 'GeoDirectory', 'events-directory' ), | ||
'events-for-geodirectory' => __( 'Events For GeoDirectory', 'events-directory' ), | ||
'userswp' => __( 'UsersWP', 'events-directory' ), | ||
); | ||
} | ||
|
||
/** | ||
* This can be set in child themes to set the GD dummy data default type. | ||
* | ||
* @param $type | ||
* @param $post_type | ||
* | ||
* @return mixed | ||
*/ | ||
public function gd_set_default_dummy_data_type( $type, $post_type ) { | ||
|
||
if ( ! $type ) { | ||
$type = 'job_board'; | ||
} | ||
return $type; | ||
} | ||
|
||
|
||
} | ||
|
||
} |
Empty file.
Empty file.
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!-- wp:pattern {"slug":"events/footer-default"} /--> | ||
<!-- wp:pattern {"slug":"events-directory/footer-default"} /--> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!-- wp:pattern {"slug":"events/header-default"} /--> | ||
<!-- wp:pattern {"slug":"events-directory/header-default"} /--> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!-- wp:pattern {"slug":"events/hero-archive-default"} /--> | ||
<!-- wp:pattern {"slug":"events-directory/hero-archive-default"} /--> |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!-- wp:pattern {"slug":"events/hero-page-default"} /--> | ||
<!-- wp:pattern {"slug":"events-directory/hero-page-default"} /--> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!-- wp:pattern {"slug":"events/hero-post-default"} /--> | ||
<!-- wp:pattern {"slug":"events-directory/hero-post-default"} /--> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<!-- wp:group {"align":"full","layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group alignfull"><!-- wp:blockstrap/blockstrap-widget-image {"img_src":"featured","img_size":"medium_large","img_aspect":"21by9","img_rounded":"rounded","mb_lg":"4","border":"0","content":"\u003cfigure class=\u0022 ratio ratio-21x9 embed-has-actionoverflow-hidden mb-4 border-0 \u0022 style=\u0022 \u0022\u003e\u003cimg src=\u0022http://event.local/wp-content/plugins/blockstrap-page-builder-blocks//assets/images/block-image-placeholder.jpg\u0022 class=\u0022mw-100 w-100 rounded embed-item-cover-xy \u0022 /\u003e\u003c/figure\u003e"} --> | ||
[bs_image img_src='featured' img_image='' img_image_id='' img_size='medium_large' img_url='' fallback_img_src='' fallback_img_image='' fallback_img_image_id='' img_alt='' img_lazyload='' img_link_to='' img_link='' img_link_lightbox='' lightbox_size='full' img_link_hover_effect='' text='' col='' col_md='' col_lg='' img_aspect='21by9' img_cover='' img_border='' img_rounded='rounded' img_rounded_size='' img_shadow='' img_overlay='' text_color='' font_size='' font_size_custom='' font_weight='' text_justify='false' text_align='' text_align_md='' text_align_lg='' bg_on_text='false' mt='' mr='' mb='' ml='' mt_md='' mr_md='' mb_md='' ml_md='' mt_lg='' mr_lg='' mb_lg='4' ml_lg='' pt='' pr='' pb='' pl='' pt_md='' pr_md='' pb_md='' pl_md='' pt_lg='' pr_lg='' pb_lg='' pl_lg='' border='0' rounded='' rounded_size='' shadow='' position='' sticky_offset_top='' sticky_offset_bottom='' display='' display_md='' display_lg='' float='' float_md='' float_lg='' img_mask='' img_mask_position='center center' visibility_conditions='' css_class='' ] | ||
<!-- /wp:blockstrap/blockstrap-widget-image --> | ||
<div class="wp-block-group alignfull"><!-- wp:blockstrap/blockstrap-widget-image {"img_src":"featured","img_size":"medium_large","img_aspect":"21by9","img_rounded":"rounded","mb_lg":"4","border":"0","content":""} --> | ||
[bs_image img_src='featured' img_image='' img_image_id='' img_size='medium_large' img_url='' fallback_img_src='' fallback_img_image='' fallback_img_image_id='' img_alt='' img_lazyload='' img_link_to='' img_link='' img_link_lightbox='' lightbox_size='full' img_link_hover_effect='' text='' col='' col_md='' col_lg='' img_aspect='21by9' img_cover='' img_border='' img_rounded='rounded' img_rounded_size='' img_shadow='' img_overlay='' text_color='' font_size='' font_size_custom='' font_weight='' text_justify='false' text_align='' text_align_md='' text_align_lg='' bg_on_text='false' mt='' mr='' mb='' ml='' mt_md='' mr_md='' mb_md='' ml_md='' mt_lg='' mr_lg='' mb_lg='4' ml_lg='' pt='' pr='' pb='' pl='' pt_md='' pr_md='' pb_md='' pl_md='' pt_lg='' pr_lg='' pb_lg='' pl_lg='' border='0' rounded='' rounded_size='' shadow='' position='' sticky_offset_top='' sticky_offset_bottom='' display='' display_md='' display_lg='' float='' float_md='' float_lg='' img_mask='' img_mask_position='center center' visibility_conditions='' css_class='' ] | ||
<!-- /wp:blockstrap/blockstrap-widget-image --> | ||
|
||
<!-- wp:post-content {"align":"full","layout":{"inherit":true}} /--> | ||
<!-- wp:post-content {"align":"full","layout":{"inherit":true}} /--> | ||
|
||
<!-- wp:post-terms {"term":"post_tag"} /--> | ||
<!-- wp:post-terms {"term":"post_tag"} /--> | ||
|
||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"2.375em"}}},"className":"post-nav"} --> | ||
<div class="wp-block-group post-nav" style="margin-top:2.375em"><!-- wp:post-navigation-link {"type":"previous"} /--> | ||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"2.375em"}}},"className":"post-nav"} --> | ||
<div class="wp-block-group post-nav" style="margin-top:2.375em"><!-- wp:post-navigation-link {"type":"previous"} /--> | ||
|
||
<!-- wp:post-navigation-link /--></div> | ||
<!-- /wp:group --> | ||
<!-- wp:post-navigation-link /--></div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:spacer {"height":"70px"} --> | ||
<div style="height:70px" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> | ||
<!-- wp:spacer {"height":"70px"} --> | ||
<div style="height:70px" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> | ||
|
||
<!-- wp:template-part {"slug":"comments","theme":"aye-events"} /--></div> | ||
<!-- /wp:group --> | ||
<!-- wp:template-part {"slug":"comments","theme":"events-directory"} /--></div> | ||
<!-- /wp:group --> |
Oops, something went wrong.