-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Showing
11 changed files
with
118 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,6 @@ | |
$utils->script("https://code.jquery.com/jquery-3.6.0.min.js"); | ||
$utils->script("https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"); | ||
$utils->script("https://cdn.datatables.net/v/bs5/dt-1.11.3/datatables.min.js"); | ||
|
||
if (strpos($_SERVER['REQUEST_URI'], 'download.php') !== false) { | ||
$utils->script("https://platform-api.sharethis.com/js/sharethis.js#property={$st['sharethis_code']}&product=inline-share-buttons"); | ||
} | ||
|
||
$utils->script("https://unpkg.com/[email protected]/dist/dropzone-min.js"); | ||
$utils->script("https://cdn.datatables.net/fixedcolumns/4.2.2/js/dataTables.fixedColumns.min.js"); | ||
|
||
|
@@ -27,3 +22,4 @@ | |
|
||
include_once APP_PATH . "modules/adsense/main.php"; | ||
include_once APP_PATH . "modules/analytics/main.php"; | ||
include_once APP_PATH . "modules/analytics/main.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
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
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,22 @@ | ||
<?php include_once 'session.php'; ?> | ||
|
||
<?php $title = $lang['general']['maintenance_mode_title'] ?> | ||
|
||
<?php include_once 'components/header.php'; ?> | ||
|
||
<div class="container pb-5 pt-5"> | ||
<div class="row justify-content-center text-center"> | ||
<div class="col-sm-12 col-md-8 col-lg-8"> | ||
<div class="card"> | ||
<div class="card-header"> | ||
<b><?= $lang['general']['maintenance_mode_title'] ?></b> | ||
</div> | ||
<div class="card-body"> | ||
<p><?= $lang['general']['maintenance_mode_body'] ?></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<?php include_once 'components/footer.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,5 @@ | ||
<?php | ||
|
||
if (strpos($_SERVER['REQUEST_URI'], 'download.php') !== false) { | ||
$utils->script("https://platform-api.sharethis.com/js/sharethis.js#property={$st['sharethis_code']}&product=inline-share-buttons"); | ||
} |
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