This file contains 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
<div class="section"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-lg-4 col-sm-4 col-md-4 col-xs-12"> | |
<img class="hidden-xs img-responsive img-thumbnail" src="http://placehold.it/250x150&text=banner"> | |
<h4>Client Login</h4> | |
<p> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. <a href="/customer/login">Client Login</a> | |
</p> | |
</div> |
This file contains 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
<div class="carousel slide" id="myCarousel"> | |
<!-- Indicators --> | |
<ol class="carousel-indicators"> | |
<li class="active" data-slide-to="0" data-target="#myCarousel"></li> | |
<li data-slide-to="1" data-target="#myCarousel" class=""></li> | |
<li data-slide-to="2" data-target="#myCarousel" class=""></li> | |
</ol> | |
<!-- Wrapper for slides --> | |
<div class="carousel-inner"> | |
<div class="item active"> |
This file contains 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
<?xml version="1.0"?> | |
<blocks> | |
<block side="beforecontent">slideshow</block> | |
<block side="contentend">end-footer</block> | |
</blocks> |
This file contains 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
[{ | |
customer_id: 'user1', | |
firstname: 'Jane', | |
lastname: 'Doe', | |
company: 'Apple' | |
}, { | |
customer_id: 'user2', | |
firstname: 'John', | |
lastname: 'Roberts', | |
company: 'Apple' |
This file contains 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
<div class="panel panel-default"> | |
<!-- Default panel contents --> | |
<div class="panel-heading"> | |
Contact Us | |
</div> | |
<div class="panel-body"> | |
<p>Our developers are available from Monday to Friday. [09.00 am - 06:00 pm]<br/>Send your enquiry by contact form. Click here to show the contact form: <a href=\"/contacts\"><i class="fa fa-phone"></i> Contacts Now</a></p> | |
</div> | |
<!-- List group --> | |
<ul class="list-group"> |
This file contains 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 | |
/** | |
* BjyAuthorize Module (https://github.com/bjyoungblood/BjyAuthorize) | |
* | |
* @link https://github.com/bjyoungblood/BjyAuthorize for the canonical source repository | |
* @license http://framework.zend.com/license/new-bsd New BSD License | |
*/ | |
namespace BjyAuthorize\Provider\Role; |
This file contains 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
/** | |
* @inheritDoc | |
*/ | |
public function search($search, $locale="en_US") | |
{ | |
$result = array(); | |
$i = 0; | |
$records = $this->tableGateway->select(function (\Zend\Db\Sql\Select $select) use ($search, $locale){ |
OlderNewer