You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
355 B
PHP
20 lines
355 B
PHP
<?php
|
|
|
|
namespace App\ClassLib;
|
|
|
|
class MiscLib
|
|
{
|
|
public static function getDateTime()
|
|
{
|
|
return date('Y-m-d H:i:s');
|
|
}
|
|
|
|
public static function adminLTETableTemplate()
|
|
{
|
|
$template = [
|
|
'table_open' => '<table class="table table-head-fixed table-hover text-nowrap">'
|
|
];
|
|
|
|
return $template;
|
|
}
|
|
} |