0
mirror of https://github.com/valentineus/iii-module.git synced 2025-07-01 11:00:27 +03:00
This commit is contained in:
Valentin Popov
2016-09-21 18:12:07 +04:00
parent b9628f189b
commit 07c1b99cb5
6 changed files with 61 additions and 40 deletions

View File

@ -1,12 +1,18 @@
<?php
/**
* Function of saving the token in a cookie.
* When you receive the new value clears all stored cookies.
* @param $token - The values of the token.
* The function returns the current ID.
* Returns zero if no ID is stored.
*/
function NewToken($token) {
unset($_COOKIE); // Removes all
SetCookie("BOT_TOKEN", $token); // Save a new cookie
function GetID() {
// Search current ID...
if (isset($_COOKIE['CURRENT_ID'])) {
$id = (int)$_COOKIE['CURRENT_ID'] + 1;
// ...or returns zero
} else {
$id = 0;
}
// We issue results
return $id;
}
/**
@ -33,22 +39,6 @@ function GetSession($token, $bot) {
}
}
/**
* The function returns the current ID.
* Returns zero if no ID is stored.
*/
function GetID() {
// Search current ID...
if (isset($_COOKIE['CURRENT_ID'])) {
$id = (int)$_COOKIE['CURRENT_ID'] + 1;
// ...or returns zero
} else {
$id = 0;
}
// We issue results
return $id;
}
/**
* The function overrides the current ID to
* the specified or the next. If any missing ID
@ -67,8 +57,29 @@ function SetID($id) {
$id = 1;
}
SetCookie('CURRENT_ID', $id, time()+300); // Save the result
// We issue results
return $id;
return $id; // We issue results
}
/**
* Cleaning function of the parameter that is passed to it.
* @param $type - Type cleansed.
*/
function ClearingCache($type) {
switch ($type) {
// Clear the cookies
case 'cookies':
foreach ($_COOKIE as $key => $value) {
SetCookie($key, $value, time()-1000);
}
break;
// Clear the POST
case 'post':
$_POST = array();
break;
// ...
default:
break;
}
}
/**

View File

@ -1,8 +1,8 @@
<!-- Beginning footer -->
<footer class="footer">
<div class="container">
<p class="text-muted">
<a href="mailto:dev@valentineus.link">dev@valentineus.link</a>
<p class="text-muted text-center">
With love <i class="glyphicon glyphicon-heart text-danger"></i> from Russia
</p>
</div>
</footer>

View File

@ -1,8 +1,10 @@
<!-- Start navigation bar -->
<nav class="navbar navbar-default navbar-fixed-top">
<!-- Loaded banner GitHub -->
<a href="https://github.com/valentineus/Module-III-API">
<img class="github-fork">
</a>
<!-- Filling panel -->
<div class="container">
<div class="collapse navbar-collapse">
<!-- The right side of the navigation bar -->

View File

@ -9,6 +9,7 @@
<div class="col-md-4">
<button type="submit" class="btn btn-default">Submit</button>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#SettingsModal">Settings</button>
<button type="submit" class="btn btn-danger" name="reset">Reset</button>
</div>
</div><!-- row -->
</form>