-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from 64j/3.1.x
3.1.8
- Loading branch information
Showing
20 changed files
with
81 additions
and
38 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
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,3 @@ | ||
<?php | ||
|
||
return require 'english.php'; |
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,3 @@ | ||
<?php | ||
|
||
return require 'spanish.php'; |
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,3 @@ | ||
<?php | ||
|
||
return require 'nederlands-utf8.php'; |
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,3 @@ | ||
<?php | ||
|
||
return require 'russian-UTF8.php'; |
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,8 +1,8 @@ | ||
<div class="col-12 b-field b-item b-draggable<?= $data['rowClass'] ?>" title="<?= $data['title'] ?>" data-name="<?= $data['name'] ?>" data-title="<?= $data['title'] ?>" data-type="<?= $data['type'] ?>" data-category="<?= $data['category'] ?>"<?= $data['attr'] ?>> | ||
<div class="col-12 b-field b-item b-draggable<?= $data['rowClass'] ?? '' ?>" title="<?= $data['title'] ?? '' ?>" data-name="<?= $data['name'] ?? '' ?>" data-title="<?= $data['title'] ?? '' ?>" data-type="<?= $data['type'] ?? '' ?>" data-category="<?= $data['category'] ?? 0 ?>"<?= $data['attr'] ?? '' ?>> | ||
<div class="row align-items-center"> | ||
<div class="col-auto"><i class="fa fa-bars b-move"></i></div> | ||
<div class="col b-field-name"><?= $data['name'] ?></div> | ||
<div class="col b-field-name"><?= $data['name'] ?? '' ?></div> | ||
<div class="col-auto"><i class="fa fa-cog b-btn-settings"></i></div> | ||
<div class="col-auto"><i class="fa fa-minus-circle text-danger b-btn-del"></i></div> | ||
</div> | ||
</div> | ||
</div> |
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,7 +1,7 @@ | ||
<div class="col-12 b-category b-item b-draggable" data-name="category:<?= $data['name'] ?>" data-title="<?= $data['title'] ?>" data-id="<?= $data['name'] ?>"> | ||
<div class="col-12 b-category b-item b-draggable" data-name="category:<?= $data['name'] ?? '' ?>" data-title="<?= $data['title'] ?? '' ?>" data-id="<?= $data['name'] ?? '' ?>"> | ||
<div class="row b-category-title"> | ||
<div class="col-auto"><i class="fa fa-bars b-move"></i></div> | ||
<div class="col b-field-name"><?= $data['title'] ?></div> | ||
<div class="col b-field-name"><?= $data['title'] ?? '' ?></div> | ||
<div class="col-auto"><i class="fa fa-minus-circle text-danger b-btn-del"></i></div> | ||
</div> | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -1 +1 @@ | ||
<button type="button" class="btn" <?= $data['attr'] ?>><?= $data['value'] ?></button> | ||
<button type="button" class="btn" <?= $data['attr'] ?? '' ?>><?= $data['value'] ?? '' ?></button> |
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,4 +1,4 @@ | ||
<datalist id="datalist<?= $data['id'] ?>"> | ||
<?= $data['options'] ?> | ||
<datalist id="datalist<?= $data['id'] ?? '' ?>"> | ||
<?= $data['options'] ?? '' ?> | ||
</datalist> | ||
<script>document.mutate.tv<?= $data['id'] ?>.setAttribute('list', 'datalist<?= $data['id'] ?>');</script> | ||
<script>document.mutate.tv<?= $data['id'] ?? '' ?>.setAttribute('list', 'datalist<?= $data['id'] ?? '' ?>');</script> |
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,6 +1,6 @@ | ||
<input id="<?= $data['id'] ?>" class="<?= $data['class'] ?> DatePicker unstyled" name="<?= $data['name'] ?>" value="<?= $data['value'] ?>" onblur="documentDirty=true;" placeholder="<?= $data['placeholder'] ?>" <?= $data['disabled'] ?> /> | ||
<input id="<?= $data['id'] ?? '' ?>" class="<?= $data['class'] ?? '' ?> DatePicker unstyled" name="<?= $data['name'] ?? '' ?>" value="<?= $data['value'] ?? '' ?>" onblur="documentDirty=true;" placeholder="<?= $data['placeholder'] ?? '' ?>" <?= $data['disabled'] ?? '' ?> /> | ||
<span class="input-group-append"> | ||
<a class="btn text-danger" href="javascript:;" onclick="document.mutate.<?= $data['name'] ?>.value=''; documentDirty=true; return true;"> | ||
<i class="<?= $data['icon'] ?>" title="<?= $data['icon.title'] ?>"></i> | ||
<a class="btn text-danger" href="javascript:;" onclick="document.mutate.<?= $data['name'] ?? '' ?>.value=''; documentDirty=true; return true;"> | ||
<i class="<?= $data['icon'] ?? '' ?>" title="<?= $data['icon.title'] ?? '' ?>"></i> | ||
</a> | ||
</span> | ||
</span> |
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 @@ | ||
<<?= (isset($data['tag']) ? $data['tag'] : 'div') ?><?= (isset($data['id']) ? ' id="' . $data['id'] . '"' : '') ?> class="<?= (isset($data['class']) ? $data['class'] : '') ?>" <?= (isset($data['attr']) ? $data['attr'] : '') ?>><?= (isset($data['content']) ? $data['content'] : '') ?></<?= (isset($data['tag']) ? $data['tag'] : 'div') ?>> | ||
<<?= $data['tag'] ?? 'div' ?> id="<?= $data['id'] ?? '' ?>" class="<?= $data['class'] ?? '' ?>" <?= $data['attr'] ?? '' ?>><?= $data['content'] ?? '' ?></<?= $data['tag'] ?? 'div' ?>> |
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 @@ | ||
<input type="<?= $data['type'] ?>" id="<?= $data['id'] ?>" class="<?= $data['class'] ?>" name="<?= $data['name'] ?>" maxlength="<?= $data['maxlength'] ?>" value="<?= $data['value'] ?>" onchange="<?= $data['onchange'] ?>" <?= $data['attr'] ?> /> | ||
<input type="<?= $data['type'] ?? 'text' ?>" id="<?= $data['id'] ?? '' ?>" class="<?= $data['class'] ?? '' ?>" name="<?= $data['name'] ?? '' ?>" maxlength="<?= $data['maxlength'] ?? '' ?>" value="<?= $data['value'] ?? '' ?>" onchange="<?= $data['onchange'] ?? '' ?>" <?= $data['attr'] ?? '' ?> /> |
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 @@ | ||
<option value="<?= $data['value'] ?>" <?= $data['selected'] ?>><?= $data['title'] ?></option> | ||
<option value="<?= $data['value'] ?? '' ?>" <?= $data['selected'] ?? '' ?>><?= $data['title'] ?? '' ?></option> |
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,3 +1,3 @@ | ||
<select id="<?= $data['id'] ?>" class="<?= $data['class'] ?>" name="<?= $data['name'] ?>" onchange="<?= $data['onchange'] ?>"> | ||
<?= $data['options'] ?> | ||
</select> | ||
<select id="<?= $data['id'] ?? '' ?>" class="<?= $data['class'] ?? '' ?>" name="<?= $data['name'] ?? '' ?>" onchange="<?= $data['onchange'] ?? '' ?>"> | ||
<?= $data['options'] ?? '' ?> | ||
</select> |
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,7 +1,7 @@ | ||
<!-- tab<?= $data['name'] ?> --> | ||
<div class="tab-page" id="tab<?= $data['name'] ?>"> | ||
<h2 class="tab"><?= $data['title'] ?></h2> | ||
<script><?= $data['tabsObject'] ?>.addTabPage(document.getElementById('tab<?= $data['name'] ?>'));</script> | ||
<?= isset($data['content']) ? $data['content'] : '' ?> | ||
<!-- tab<?= $data['name'] ?? '' ?> --> | ||
<div class="tab-page" id="tab<?= $data['name'] ?? '' ?>"> | ||
<h2 class="tab"><?= $data['title'] ?? '' ?></h2> | ||
<script><?= $data['tabsObject'] ?? '' ?>.addTabPage(document.getElementById('tab<?= $data['name'] ?? '' ?>'));</script> | ||
<?= $data['content'] ?? '' ?> | ||
</div> | ||
<!-- end #tab<?= $data['name'] ?> --> | ||
<!-- end #tab<?= $data['name'] ?? '' ?> --> |
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 @@ | ||
<textarea id="<?= $data['id'] ?>" class="<?= $data['class'] ?>" name="<?= $data['name'] ?>" rows="<?= $data['rows'] ?>" wrap="soft" onchange="documentDirty=true;"><?= $data['value'] ?></textarea> | ||
<textarea id="<?= $data['id'] ?? '' ?>" class="<?= $data['class'] ?? '' ?>" name="<?= $data['name'] ?? '' ?>" rows="<?= $data['rows'] ?? '' ?>" wrap="soft" onchange="documentDirty=true;"><?= $data['value'] ?? '' ?></textarea> |
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,4 +1,4 @@ | ||
<div class="col-12"> | ||
<div id="image_for_<?= $data['name'] ?>" class="image_for_field" data-image="<?= $data['value'] ?>" onclick="BrowseServer('<?= $data['name'] ?>')" style="background-image: url('<?= $data['value'] ?>');"></div> | ||
<script>document.getElementById('<?= $data['name'] ?>').addEventListener('change', renderTvImageCheck, false);</script> | ||
</div> | ||
<div id="image_for_<?= $data['name'] ?? '' ?>" class="image_for_field" data-image="<?= $data['value'] ?? '' ?>" onclick="BrowseServer('<?= $data['name'] ?? '' ?>')" style="background-image: url('<?= $data['value'] ?>');"></div> | ||
<script>document.getElementById('<?= $data['name'] ?? '' ?>').addEventListener('change', renderTvImageCheck, false);</script> | ||
</div> |
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