mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-13 17:24:54 +02:00
Change hidden to hide (Eloquent blocked keyword)
This commit is contained in:
@@ -73,7 +73,7 @@ if(!empty($action) && isRequestMethod('post'))
|
||||
}
|
||||
}
|
||||
else if($action == 'hide') {
|
||||
if (Changelog::toggleHidden($id, $errors, $status)) {
|
||||
if (Changelog::toggleHide($id, $errors, $status)) {
|
||||
success(($status == 1 ? 'Hide' : 'Show') . ' successful.');
|
||||
}
|
||||
}
|
||||
|
@@ -88,7 +88,7 @@ if(!empty($action))
|
||||
}
|
||||
}
|
||||
} else if ($action == 'hide') {
|
||||
if (News::toggleHidden($id, $errors, $status)) {
|
||||
if (News::toggleHide($id, $errors, $status)) {
|
||||
success(($status == 1 ? 'Hide' : 'Show') . ' successful.');
|
||||
}
|
||||
}
|
||||
@@ -99,7 +99,7 @@ if(!empty($action))
|
||||
}
|
||||
|
||||
$categories = array();
|
||||
foreach($db->query('SELECT `id`, `name`, `icon_id` FROM `' . TABLE_PREFIX . 'news_categories` WHERE `hidden` != 1') as $cat)
|
||||
foreach($db->query('SELECT `id`, `name`, `icon_id` FROM `' . TABLE_PREFIX . 'news_categories` WHERE `hide` != 1') as $cat)
|
||||
{
|
||||
$categories[$cat['id']] = array(
|
||||
'name' => $cat['name'],
|
||||
@@ -142,7 +142,7 @@ foreach ($query as $_news) {
|
||||
|
||||
$newses[$_news['type']][] = array(
|
||||
'id' => $_news['id'],
|
||||
'hidden' => $_news['hidden'],
|
||||
'hide' => $_news['hide'],
|
||||
'archive_link' => getLink('news') . '/archive/' . $_news['id'],
|
||||
'title' => $_news['title'],
|
||||
'date' => $_news['date'],
|
||||
|
@@ -97,7 +97,7 @@ if (!empty($action) && isRequestMethod('post')) {
|
||||
}
|
||||
}
|
||||
} else if ($action == 'hide') {
|
||||
if (Pages::toggleHidden($id, $errors, $status)) {
|
||||
if (Pages::toggleHide($id, $errors, $status)) {
|
||||
success(($status == 0 ? 'Show' : 'Hide') . ' successful.');
|
||||
}
|
||||
}
|
||||
@@ -112,7 +112,7 @@ $pages = ModelsPages::all()->map(function ($e) {
|
||||
'title' => substr($e->title, 0, 20),
|
||||
'php' => $e->php == '1',
|
||||
'id' => $e->id,
|
||||
'hidden' => $e->hidden
|
||||
'hide' => $e->hide
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
|
@@ -213,7 +213,7 @@ else if (isset($_REQUEST['search'])) {
|
||||
}
|
||||
|
||||
$deleted = (isset($_POST['deleted']) && $_POST['deleted'] == 'true');
|
||||
$hidden = (isset($_POST['hidden']) && $_POST['hidden'] == 'true');
|
||||
$hide = (isset($_POST['hide']) && $_POST['hide'] == 'true');
|
||||
|
||||
$created = strtotime($_POST['created']);
|
||||
verify_number($created, 'Created', 11);
|
||||
@@ -290,7 +290,7 @@ else if (isset($_REQUEST['search'])) {
|
||||
$player->setCustomField('deletion', $deleted ? '1' : '0');
|
||||
else
|
||||
$player->setCustomField('deleted', $deleted ? '1' : '0');
|
||||
$player->setCustomField('hidden', $hidden ? '1' : '0');
|
||||
$player->setCustomField('hide', $hide ? '1' : '0');
|
||||
$player->setCustomField('created', $created);
|
||||
if (isset($comment))
|
||||
$player->setCustomField('comment', $comment);
|
||||
@@ -485,8 +485,8 @@ else if (isset($_REQUEST['search'])) {
|
||||
</div>
|
||||
<div class="col-12 col-sm-12 col-lg-6">
|
||||
<div class="custom-control custom-switch custom-switch-on-success">
|
||||
<input type="checkbox" class="custom-control-input" name="hidden" id="hidden" value="true" <?php echo($player->isHidden() ? ' checked' : ''); ?>>
|
||||
<label class="custom-control-label" for="hidden">Hidden</label>
|
||||
<input type="checkbox" class="custom-control-input" name="hide" id="hide" value="true" <?php echo($player->isHidden() ? ' checked' : ''); ?>>
|
||||
<label class="custom-control-label" for="hide">Hidden</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user