-
Notifications
You must be signed in to change notification settings - Fork 2
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
Dennis Suitters
committed
Oct 17, 2023
1 parent
fda41ea
commit 4c88356
Showing
388 changed files
with
5,535 additions
and
3,511 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
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 @@ | ||
v0.2.26-6 | ||
v0.2.26 |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.24 | ||
* @version 0.2.26-7 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -34,7 +34,7 @@ | |
$id=$db->lastInsertId(); | ||
echo'<script>'. | ||
'window.top.window.$("#agronomy_areas").append(`'. | ||
'<div id="l_'.$id.'" class="card my-1 p-2">'. | ||
'<div id="l_'.$id.'" class="card my-1 p-2 add-item">'. | ||
'<h6>'.$name.'</h6>'. | ||
($code!=''?'<div class="small">Code: '.$code.'</div>':''). | ||
($type!=''?'<div class="small">Type: '.$type.'</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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.24 | ||
* @version 0.2.26-7 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -32,7 +32,7 @@ | |
$id=$db->lastInsertId(); | ||
echo'<script>'. | ||
'window.top.window.$("#agronomy_areas").append(`'. | ||
'<div id="l_'.$id.'" class="card col-12 col-sm-2 m-1 p-2">'. | ||
'<div id="l_'.$id.'" class="card col-12 col-sm-2 m-1 p-2 add-item">'. | ||
'<h6>'.$name.'</h6>'. | ||
($code!=''?'<div class="small">Code: '.$code.'</div>':''). | ||
($type!=''?'<div class="small">Type: '.$type.'</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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.24 | ||
* @version 0.2.26-7 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -37,7 +37,7 @@ | |
$id=$db->lastInsertId(); | ||
echo'<script>'. | ||
'window.top.window.$("#agronomy_areas").append(`'. | ||
'<div id="l_'.$id.'" class="card col-12 col-sm-2 m-1 p-2">'. | ||
'<div id="l_'.$id.'" class="card col-12 col-sm-2 m-1 p-2 add-item">'. | ||
'<h6>'.$name.'</h6>'. | ||
($code!=''?'<div class="small">Code: '.$code.'</div>':''). | ||
($type!=''?'<div class="small">Type: '.$type.'</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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.23 | ||
* @version 0.2.26-7 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -26,19 +26,13 @@ | |
]); | ||
$id=$db->lastInsertId(); | ||
echo'<script>'. | ||
'window.top.window.$("#brand").append(`<div id="l_'.$id.'" class="row">'. | ||
'<div class="col-12 col-md-6">'. | ||
'<div class="form-row">'. | ||
'<input id="title'.$id.'" type="text" value="'.$title.'" readonly>'. | ||
'</div>'. | ||
'</div>'. | ||
'<div class="col-12 col-md-5">'. | ||
'<div class="form-row">'. | ||
'<input id="url'.$id.'" type="text" value="'.$url.'" readonly>'. | ||
'</div>'. | ||
'window.top.window.$("#brand").append(`<div id="l_'.$id.'" class="row add-item">'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="input-text">'.$title.'</div>'. | ||
'</div>'. | ||
'<div class="col-12 col-md-1">'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="form-row">'. | ||
'<div class="input-text col-md">'.$url.'</div>'. | ||
($icon!=''? | ||
'<a data-fancybox="lightbox" href="'.$icon.'"><img id="thumbimage" src="'.$icon.'" alt="Thumbnail"></a>' | ||
: | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.23 | ||
* @version 0.2.26-7 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -25,16 +25,12 @@ | |
]); | ||
$id=$db->lastInsertId(); | ||
echo'<script>'. | ||
'window.top.window.$("#category").append(`<div id="l_'.$id.'" class="row">'. | ||
'<div class="col-12 col-md-6">'. | ||
'<div class="form-row">'. | ||
'<input type="text" value="'.$cat.'" readonly>'. | ||
'</div>'. | ||
'window.top.window.$("#category").append(`<div id="l_'.$id.'" class="row add-item">'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="input-text">'.$cat.'</div>'. | ||
'</div>'. | ||
'<div class="col-12 col-md-5">'. | ||
'<div class="form-row">'. | ||
'<input id="ct'.$id.'" type="text" value="'.$ct.'" readonly>'. | ||
'</div>'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="input-text">'.$ct.'</div>'. | ||
'</div>'. | ||
'<div class="col-12 col-md-1">'. | ||
'<div class="form-row">'. | ||
|
@@ -49,7 +45,8 @@ | |
'<button class="trash" data-tooltip="tooltip" aria-label="Delete"><i class="i">trash</i></button>'. | ||
'</form>'. | ||
'</div>'. | ||
'</div>'. | ||
'</div>'. | ||
'</div>`);'. | ||
'</script>'; | ||
} | ||
}else | ||
echo'<script>window.top.window.toastr["error"]("The Category field must contain data!");</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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.26-6 | ||
* @version 0.2.26-7 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -83,8 +83,8 @@ | |
elseif(stristr($c['gravatar'],'gravatar.com/avatar/'))$avatar=$c['gravatar']; | ||
} | ||
echo'window.top.window.$("#comments").append(`'. | ||
'<div id="l_'.$id.'" class="row swing-in-top-fwd">'. | ||
'<article class="card zebra mt-2 mb-0 p-0 overflow-visible card-list shadow">'. | ||
'<div id="l_'.$id.'" class="row add-item">'. | ||
'<article class="card zebra mb-0 p-0 overflow-visible card-list shadow">'. | ||
'<div class="row">'. | ||
'<div class="col-12 col-md-2 pl-2 py-2 align-top small">'.$name.'</div>'. | ||
'<div class="col-12 col-md-4 py-2 align-top small">'.$da.'</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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.23 | ||
* @version 0.2.26-7 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -29,20 +29,26 @@ | |
if($v==0)$v=''; | ||
$id=$db->lastInsertId(); | ||
echo'<script>'. | ||
'window.top.window.$("#discountrange").append(`<div id="l_'.$id.'" class="form-row mt-1">'. | ||
'<div class="input-text">From $</div>'. | ||
'<input type="number" value="'.$f.'" readonly>'. | ||
'<div class="input-text">To $</div>'. | ||
'<input type="number" value="'.$t.'" readonly>'. | ||
'<div class="input-text">Method</div>'. | ||
'<input type="text" value="'.($m==2?'% Off':'$ Off').'" readonly>'. | ||
'<div class="input-text">Value</div>'. | ||
'<input type="number" value="'.$v.'" readonly>'. | ||
'<form target="sp" action="core/purge.php">'. | ||
'<input type="hidden" name="id" value="'.$id.'">'. | ||
'<input type="hidden" name="t" value="choices">'. | ||
'<button type="submit" class="trash" data-tooltip="tooltip" aria-label="Delete"><i class="i">trash</i></button>'. | ||
'</form>'. | ||
'</div>`);'. | ||
'</script>'; | ||
'window.top.window.$("#discountrange").append(`<div id="l_'.$id.'" class="row add-item">'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="input-text">'.$f.'</div>'. | ||
'</div>'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="input-text">'.$t.'</div>'. | ||
'</div>'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="input-text">'.($m==2?'% Off':'$ Off').'</div>'. | ||
'</div>'. | ||
'<div class="col-12 col-md">'. | ||
'<div class="form-row">'. | ||
'<div class="input-text col-md">'.$v.'</div>'. | ||
'<form target="sp" action="core/purge.php">'. | ||
'<input type="hidden" name="id" value="'.$id.'">'. | ||
'<input type="hidden" name="t" value="choices">'. | ||
'<button type="submit" class="trash" data-tooltip="tooltip" aria-label="Delete"><i class="i">trash</i></button>'. | ||
'</form>'. | ||
'</div>'. | ||
'</div>'. | ||
'</div>`);'. | ||
'</script>'; | ||
}else echo'<script>window.top.window.toastr["error"]("Not all data was entered");</script>'; |
Oops, something went wrong.