Skip to content

Commit 263c120

Browse files
committed
cleaning for SLI
1 parent 69044f7 commit 263c120

20 files changed

+15
-277
lines changed

Ajax/bootstrap/html/base/CssRef.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
namespace Ajax\bootstrap\html\base;
44

5-
use Ajax\common\BaseEnum;
6-
use Ajax\service\PhalconUtils;
5+
use Ajax\service\JString;
76

87
/**
98
* Default HTML values for Twitter Bootstrap HTML components
@@ -353,10 +352,10 @@ public static function getStyle($cssStyle, $prefix) {
353352
throw new \Exception("La valeur passée a propriété `Style` ne fait pas partie des valeurs possibles : index '".$cssStyle."' inexistant");
354353
}
355354
}
356-
if (PhalconUtils::startsWith($cssStyle, "-")===true) {
355+
if (JString::startsWith($cssStyle, "-")===true) {
357356
$cssStyle=substr($cssStyle, 1);
358357
}
359-
if (PhalconUtils::startsWith($cssStyle, $prefix)===false) {
358+
if (JString::startsWith($cssStyle, $prefix)===false) {
360359
$cssStyle=$prefix."-".$cssStyle;
361360
}
362361
return $cssStyle;

Ajax/bootstrap/html/content/HtmlTabItem.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Ajax\JsUtils;
66
use Ajax\bootstrap\html\HtmlLink;
7-
use Ajax\bootstrap\components\Tab;
87
use Ajax\bootstrap\html\base\HtmlBsDoubleElement;
98

109
/**

Ajax/bootstrap/html/phalcon/PhBsElement.php

Lines changed: 0 additions & 75 deletions
This file was deleted.

Ajax/bootstrap/html/phalcon/PhBsForm.php

Lines changed: 0 additions & 45 deletions
This file was deleted.

Ajax/bootstrap/html/phalcon/PhBsRenderer.php

Lines changed: 0 additions & 82 deletions
This file was deleted.

Ajax/bootstrap/html/phalcon/PhBsSelect.php

Lines changed: 0 additions & 37 deletions
This file was deleted.

Ajax/bootstrap/html/phalcon/PhBsText.php

Lines changed: 0 additions & 20 deletions
This file was deleted.

Ajax/bootstrap/html/templates/tplCarousel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
<!-- Controls -->
1515
%leftControl%
1616
%rightControl%
17-
</div>';
17+
</div>';

Ajax/bootstrap/html/templates/tplCarouselControl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
<a %properties%>
44
<span class="glyphicon %glyphIcon%" aria-hidden="true"></span>
55
<span class="sr-only">%caption%</span>
6-
</a>';
6+
</a>';

Ajax/bootstrap/html/templates/tplCarouselItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
<div class="carousel-caption">
66
%caption%
77
</div>
8-
</div>';
8+
</div>';

0 commit comments

Comments
 (0)