File tree 6 files changed +60
-19
lines changed
Plugin/Showcase/Element/Showcase
6 files changed +60
-19
lines changed Original file line number Diff line number Diff line change 1
- <?php if ($ highlight ): ?>
1
+ <?php if ($ highlights ): ?>
2
2
<?= $ this ->element ('Showcase.Showcase/highlight_carousel ' , [
3
- 'givenHighlight ' => $ highlight ,
3
+ 'givenHighlight ' => $ highlights ,
4
4
'imageVersion ' => 'slider '
5
5
]) ?>
6
6
<?php endif ; ?>
Original file line number Diff line number Diff line change 1
- <div class="col-sm-12 showcase-cases ptb-30">
2
- <div class="col-sm-4 <?= $ index % 2 === 1 ? 'col-sm-push-8 ' : '' ?> ">
3
- <a href="#">
4
- <?= $ this ->Showcase ->image ($ project ->screen_monitor_images [0 ], [
5
- 'class ' => 'img-responsive '
6
- ], 'small ' ); ?>
7
- </a>
1
+ <?php if ($ project ->website ): ?>
2
+ <div class="col-sm-12 showcase-cases ptb-30">
3
+ <div class="col-sm-4 <?= $ index % 2 === 1 ? 'col-sm-push-8 ' : '' ?> ">
4
+ <a href="<?= $ this ->App ->externalLink ($ project ->website ); ?> " target="_blank">
5
+ <?= $ this ->Showcase ->image ($ project ->screen_monitor_images [0 ], [
6
+ 'class ' => 'img-responsive '
7
+ ], 'small ' ); ?>
8
+ </a>
9
+ </div>
10
+ <div class="col-sm-8 <?= $ index % 2 === 1 ? 'col-sm-pull-4 ' : '' ?> ">
11
+ <h4><?= $ project ->title ?> </h4>
12
+ <?= $ project ->description ?>
13
+ </div>
8
14
</div>
9
- <div class="col-sm-8 <?= $ index % 2 === 1 ? 'col-sm-pull-4 ' : '' ?> ">
10
- <h4><?= $ project ->title ?> </h4>
11
- <?= $ project ->description ?>
12
- </div>
13
- </div>
15
+ <?php endif ; ?>
Original file line number Diff line number Diff line change
1
+ <?php if (is_array ($ givenHighlight )): ?>
2
+ <?php $ images = collection ($ givenHighlight )
3
+ ->filter (function ($ p ) {
4
+ return isset ($ p ->screen_monitor_images [0 ]);
5
+ })
6
+ ->map (function ($ p ) {
7
+ return $ p ->screen_monitor_images [0 ];
8
+ })
9
+ ->toArray (); ?>
10
+ <?php else : ?>
11
+ <?php $ images = $ givenHighlight ->screen_monitor_images ?>
12
+ <?php endif ; ?>
13
+
1
14
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
2
15
<ol class="carousel-indicators">
3
- <?php foreach ($ givenHighlight -> screen_monitor_images as $ index => $ image ): ?>
16
+ <?php foreach ($ images as $ index => $ image ): ?>
4
17
<li data-target="#carousel-example-generic"
5
18
data-slide-to="<?= $ index ?> "
6
19
class="<?= ($ index === 0 ) ? 'active ' : '' ?> "></li>
7
20
<?php endforeach ?>
8
21
</ol>
9
22
<div class="carousel-inner" role="listbox">
10
- <?php foreach ($ givenHighlight -> screen_monitor_images as $ index => $ image ): ?>
23
+ <?php foreach ($ images as $ index => $ image ): ?>
11
24
<div class="item <?= ($ index === 0 ) ? 'active ' : '' ?> ">
12
25
<?= $ this ->Showcase ->image (
13
26
$ image ,
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ class HomePageHighlightCell extends Cell
27
27
public function display ()
28
28
{
29
29
$ highlights = $ this ->loadModel ('Showcase.Projects ' )->getHighlights ();
30
- $ highlight = reset ($ highlights );
31
- $ this ->set ('highlight ' , $ highlight );
30
+ $ this ->set ('highlights ' , $ highlights );
32
31
}
33
32
}
Original file line number Diff line number Diff line change @@ -11,6 +11,22 @@ class AppHelper extends Helper
11
11
{
12
12
public $ helpers = ['Html ' ];
13
13
14
+ /**
15
+ * Adds http to the begining if not there yet
16
+ *
17
+ * @param string $link
18
+ * @return string
19
+ */
20
+ public function externalLink ($ link )
21
+ {
22
+ if (!preg_match ('/^(http|https)/ ' , $ link )) {
23
+ return 'http:// ' . $ link ;
24
+ }
25
+
26
+ return $ link ;
27
+ }
28
+
29
+
14
30
/**
15
31
* Outputs the footer menu items
16
32
*
Original file line number Diff line number Diff line change @@ -244,4 +244,15 @@ i.icon-social {
244
244
245
245
.row .col-p30 [class *= "col-" ].business-solution {
246
246
padding : 0 20px ;
247
- }
247
+ }
248
+ input # mc-embedded-subscribe {
249
+ background : white;
250
+ color : # D33C44 ;
251
+ padding : 15px 30px ;
252
+ border-radius : 8px ;
253
+ width : auto;
254
+ }
255
+
256
+ input [type = "radio" ]: checked : before {
257
+ background : # 505050 ;
258
+ }
You can’t perform that action at this time.
0 commit comments