This file contains hidden or 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
{% extends "tables/table-paginated.html.twig" %} | |
{% block table %} | |
<table id="{{table.id}}" class="tablesorter table table-bordered table-hover table-striped" data-sortlist="{{table.sortlist}}"> | |
<thead> | |
<tr> | |
<th class="sorter-metatext" data-column-name="Name" data-column-template="#display-table-column-name">Name <i class="fa fa-sort"></i></th> | |
<th class="sorter-metatext" data-column-name="Discription" data-column-template="#display-table-column-discription">Discription <i class="fa fa-sort"></i></th> | |
<th class="sorter-metatext" data-column-name="Display_Content" data-column-template="#display-table-column-display-content">Display Content <i class="fa fa-sort"></i></th> | |
<th class="sorter-metatext" data-column-name="Location" data-column-template="#display-table-column-location">Location <i class="fa fa-sort"></i></th> |
This file contains hidden or 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
{% extends "pages/abstract/dashboard.html.twig" %} | |
{% block stylesheets_page %} | |
<!-- Page-specific CSS asset bundle --> | |
{{ assets.js('css/pages/displays') | raw }} | |
{% endblock %} | |
{# Overrides blocks in head of base template #} | |
{% block page_title %}Displays{% endblock %} |
This file contains hidden or 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
#!/bin/bash | |
sudo apt-add-repository -y ppa:ondrej/php | |
sudo apt-get update | |
sudo apt-get -y install apache2 | |
sudo apt-get -y install php7.0 |
This file contains hidden or 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
<?php | |
namespace UserFrosting\Sprinkle\Webmail\ServicesProvider; | |
use SSilence\ImapClient\ImapClient; | |
use UserFrosting\Sprinkle\Core\Error\ExceptionHandlerManager; | |
use UserFrosting\Sprinkle\Core\Error\Handler\ExceptionHandler; | |
class ServicesProvider |
This file contains hidden or 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
#include <LiquidCrystal.h> | |
#include <Keypad.h> | |
LiquidCrystal lcd(10, 9, 8, A5, A4, A3); | |
//4x4 Matrix key pad | |
const byte ROWS = 4; // Four rows | |
const byte COLS = 4; // Four columns |
This file contains hidden or 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
[06-May-2017 19:42:42 Europe/London] Illuminate\Database\Eloquent\Collection Object | |
( | |
[items:protected] => Array | |
( | |
[0] => UserFrosting\Sprinkle\Webmail\Model\WebmailAutologin Object | |
( | |
[timestamps] => 1 | |
[table:protected] => webmail_autologin | |
[fillable:protected] => Array | |
( |
This file contains hidden or 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
[2017-05-06 05:25:55] auth.DEBUG: Authorization check requested at: [ | |
{ | |
"function": "pageList", | |
"class": "UserFrosting\\Sprinkle\\Admin\\Controller\\UserController", | |
"type": "->" | |
}, | |
{ | |
"file": "C:\\xampp\\htdocs\\uf4.0.8\\app\\vendor\\slim\\slim\\Slim\\Handlers\\Strategies\\RequestResponse.php", | |
"line": 41, | |
"function": "call_user_func" |
This file contains hidden or 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
<?php | |
namespace UserFrosting\Sprinkle\Webmail\Model; | |
use Illuminate\Database\Capsule\Manager as Capsule; | |
use UserFrosting\Sprinkle\Account\Model\User; | |
use UserFrosting\Sprinkle\Webmail\Model\WebmailAutologin; | |
trait LinkWebmailAutologin { | |
/** |
This file contains hidden or 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
<?php | |
namespace UserFrosting\Sprinkle\Webmail\Controller; | |
use UserFrosting\Sprinkle\Core\Controller\SimpleController; | |
use UserFrosting\Support\Exception\ForbiddenException; | |
class WebmailController extends SimpleController | |
{ | |
public function pageIndex($request, $response, $args) |
This file contains hidden or 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
{% extends "layouts/dashboard.html.twig" %} | |
{# Overrides blocks in head of base template #} | |
{% block page_title %}{{ translate("DASHBOARD") }}{% endblock %} | |
{% block page_description %}{% endblock %} | |
{% block body_matter %} | |
<!-- Info boxes --> | |
<div class="row"> |