aboutsummaryrefslogtreecommitdiff
path: root/lib.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-12-03 18:16:07 +0300
committerValentin Popov <info@valentineus.link>2017-12-03 18:16:07 +0300
commit90cf7a0ce17f84f5d484904691956a1f784846ee (patch)
treeca3da7dce103ef646af67c2f79601200204ab90b /lib.php
parent86b7b53264dbc69d2ed73dacedc4792afd8be90a (diff)
downloadtool_managertokens-90cf7a0ce17f84f5d484904691956a1f784846ee.tar.xz
tool_managertokens-90cf7a0ce17f84f5d484904691956a1f784846ee.zip
Align columns
Diffstat (limited to 'lib.php')
-rw-r--r--lib.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib.php b/lib.php
index fad6e22..7856667 100644
--- a/lib.php
+++ b/lib.php
@@ -68,12 +68,12 @@ function tool_managertokens_create_record($options) {
global $DB;
$token = new stdClass();
- $token->enabled = !empty($options->enabled) ? boolval($options->enabled) : false;
- $token->limited = !empty($options->limited) ? intval($options->limited) : 0;
- $token->targetid = !empty($options->targetid) ? intval($options->targetid) : 0;
- $token->targettype = !empty($options->targettype) ? strval($options->targettype) : "null";
+ $token->enabled = !empty($options->enabled) ? boolval($options->enabled) : false;
+ $token->limited = !empty($options->limited) ? intval($options->limited) : 0;
+ $token->targetid = !empty($options->targetid) ? intval($options->targetid) : 0;
+ $token->targettype = !empty($options->targettype) ? strval($options->targettype) : "null";
$token->timelimited = !empty($options->timelimited) ? intval($options->timelimited) : 0;
- $token->token = !empty($options->token) ? strval($options->token) : generate_password(12);
+ $token->token = !empty($options->token) ? strval($options->token) : generate_password(12);
$token->timecreated = time();
$token->timemodified = time();