Changeset 3167504
- Timestamp:
- 10/12/2024 09:52:50 AM (14 months ago)
- Location:
- pattern-box
- Files:
-
- 18 added
- 10 edited
- 1 copied
-
tags/1.0.5 (copied) (copied from pattern-box/trunk)
-
tags/1.0.5/assets/css/style.css (modified) (1 diff)
-
tags/1.0.5/assets/images/consulting.png (added)
-
tags/1.0.5/assets/images/finance.png (added)
-
tags/1.0.5/assets/images/healthy.png (added)
-
tags/1.0.5/assets/images/real-estate.png (added)
-
tags/1.0.5/assets/images/retirement.png (added)
-
tags/1.0.5/assets/images/save-money.png (added)
-
tags/1.0.5/assets/images/services-bg1.jpg (added)
-
tags/1.0.5/pattern-box.php (modified) (1 diff)
-
tags/1.0.5/readme.txt (modified) (2 diffs)
-
tags/1.0.5/src/PatternBoxDashboard.php (modified) (2 diffs)
-
tags/1.0.5/src/PatternBoxMain.php (modified) (2 diffs)
-
tags/1.0.5/src/patterns/service (added)
-
tags/1.0.5/src/patterns/service/service-split-layout.php (added)
-
trunk/assets/css/style.css (modified) (1 diff)
-
trunk/assets/images/consulting.png (added)
-
trunk/assets/images/finance.png (added)
-
trunk/assets/images/healthy.png (added)
-
trunk/assets/images/real-estate.png (added)
-
trunk/assets/images/retirement.png (added)
-
trunk/assets/images/save-money.png (added)
-
trunk/assets/images/services-bg1.jpg (added)
-
trunk/pattern-box.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/PatternBoxDashboard.php (modified) (2 diffs)
-
trunk/src/PatternBoxMain.php (modified) (2 diffs)
-
trunk/src/patterns/service (added)
-
trunk/src/patterns/service/service-split-layout.php (added)
Legend:
- Unmodified
- Added
- Removed
-
pattern-box/tags/1.0.5/assets/css/style.css
r3136498 r3167504 1 body { 2 background-color: #f0f0f0; 3 color: #333; 1 .service-item:hover .service-item-img{ 2 transform: translateY(-20px); 4 3 } 5 4 5 .service-item-img{ 6 transition: transform 0.3s ease; 7 } -
pattern-box/tags/1.0.5/pattern-box.php
r3140128 r3167504 96 96 true 97 97 ); 98 99 wp_enqueue_style('pattern-box-css'); 98 100 } 99 101 -
pattern-box/tags/1.0.5/readme.txt
r3156100 r3167504 1 1 === Pattern Box === 2 Contributors: dragwp, devmuhib 2 Contributors: dragwp, devmuhib, huzaifaalmesbah 3 3 Donate link: https://dragwp.com/donate 4 4 Tags: patterns, blocks, Gutenberg, design, WordPress 5 5 Requires at least: 6.0 6 6 Tested up to: 6.6.1 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 == Changelog == 53 = 1.0.5 = 54 * Service Split Pattern Added 55 52 56 = 1.0.1 = 53 57 * Fix security issues. -
pattern-box/tags/1.0.5/src/PatternBoxDashboard.php
r3136498 r3167504 58 58 'dwpb-hero' => 'Hero Patterns', 59 59 'dwpb-about' => 'About Patterns', 60 'dwpb-service' => 'Service Patterns', 60 61 ]; 61 62 … … 83 84 'about-2' => 'About 2', 84 85 'about-3' => 'About 3', 86 ], 87 'dwpb-service' => [ 88 'service-split-layout' => 'Services Split Layout' 85 89 ], 86 90 ]; -
pattern-box/tags/1.0.5/src/PatternBoxMain.php
r3136498 r3167504 24 24 'label' => __('PB About', 'pattern-box'), 25 25 'description' => __('Pattern Box About Sections.', 'pattern-box'), 26 ], 27 'dwpb-service' => [ 28 'label' => __('PB Service', 'pattern-box'), 29 'description' => __('Pattern Box Service Sections.', 'pattern-box'), 26 30 ], 27 31 ]; … … 83 87 } 84 88 89 if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-service']) && $this->options['categories']['dwpb-service']) { 90 if (isset($this->options['service-split-layout']) && $this->options['service-split-layout']) { 91 require_once __DIR__ . '/patterns/service/service-split-layout.php'; 92 } 93 } 94 85 95 } 86 96 } -
pattern-box/trunk/assets/css/style.css
r3136498 r3167504 1 body { 2 background-color: #f0f0f0; 3 color: #333; 1 .service-item:hover .service-item-img{ 2 transform: translateY(-20px); 4 3 } 5 4 5 .service-item-img{ 6 transition: transform 0.3s ease; 7 } -
pattern-box/trunk/pattern-box.php
r3140128 r3167504 96 96 true 97 97 ); 98 99 wp_enqueue_style('pattern-box-css'); 98 100 } 99 101 -
pattern-box/trunk/readme.txt
r3156100 r3167504 1 1 === Pattern Box === 2 Contributors: dragwp, devmuhib 2 Contributors: dragwp, devmuhib, huzaifaalmesbah 3 3 Donate link: https://dragwp.com/donate 4 4 Tags: patterns, blocks, Gutenberg, design, WordPress 5 5 Requires at least: 6.0 6 6 Tested up to: 6.6.1 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 == Changelog == 53 = 1.0.5 = 54 * Service Split Pattern Added 55 52 56 = 1.0.1 = 53 57 * Fix security issues. -
pattern-box/trunk/src/PatternBoxDashboard.php
r3136498 r3167504 58 58 'dwpb-hero' => 'Hero Patterns', 59 59 'dwpb-about' => 'About Patterns', 60 'dwpb-service' => 'Service Patterns', 60 61 ]; 61 62 … … 83 84 'about-2' => 'About 2', 84 85 'about-3' => 'About 3', 86 ], 87 'dwpb-service' => [ 88 'service-split-layout' => 'Services Split Layout' 85 89 ], 86 90 ]; -
pattern-box/trunk/src/PatternBoxMain.php
r3136498 r3167504 24 24 'label' => __('PB About', 'pattern-box'), 25 25 'description' => __('Pattern Box About Sections.', 'pattern-box'), 26 ], 27 'dwpb-service' => [ 28 'label' => __('PB Service', 'pattern-box'), 29 'description' => __('Pattern Box Service Sections.', 'pattern-box'), 26 30 ], 27 31 ]; … … 83 87 } 84 88 89 if (isset($this->options['categories']) && isset($this->options['categories']['dwpb-service']) && $this->options['categories']['dwpb-service']) { 90 if (isset($this->options['service-split-layout']) && $this->options['service-split-layout']) { 91 require_once __DIR__ . '/patterns/service/service-split-layout.php'; 92 } 93 } 94 85 95 } 86 96 }
Note: See TracChangeset
for help on using the changeset viewer.