public function testClear()
 {
     DinklyFlash::set('clear_test_key_1', '1');
     DinklyFlash::set('clear_test_key_hello', 'world');
     $this->assertTrue(DinklyFlash::exists('clear_test_key_1'));
     $this->assertTrue(DinklyFlash::exists('clear_test_key_hello'));
     DinklyFlash::clear();
     $this->assertFalse(DinklyFlash::exists('clear_test_key_1'));
     $this->assertFalse(DinklyFlash::exists('clear_test_key_hello'));
 }
Exemple #2
0
<div class="container primary-container">
  <?php 
if (DinklyFlash::exists('good_user_message')) {
    ?>
    <div class="alert alert-success">
    <?php 
    echo DinklyFlash::get('good_user_message');
    ?>
    <button type="button" class="close message-close" aria-hidden="true">&times;</button>
  </div>
  <?php 
}
?>
  <?php 
if (DinklyFlash::exists('error')) {
    ?>
  <div class="alert alert-danger">
  <?php 
    echo DinklyFlash::get('error');
    ?>
  <button type="button" class="close message-close" aria-hidden="true">&times;</button>
  </div>
  <?php 
}
?>

  <div>
    <h2>
        Dashboard
    </h2>
    <p>Hello <?php 
Exemple #3
0
<?php

if (DinklyFlash::exists('warning_user_message')) {
    ?>
<div class="alert alert-warning">
  <?php 
    echo DinklyFlash::get('warning_user_message');
    ?>
  <button type="button" class="close message-close" aria-hidden="true">&times;</button>
</div>
<?php 
}
?>

<h3>Users <button type="button" class="btn btn-primary btn-create-user pull-right">Create User</button></h3>
<hr>

<?php 
if ($users != array()) {
    ?>
<table cellpadding="0" cellspacing="0" border="0"  class="table table-striped table-bordered dinkly-datatable" id="user-list">
  <thead>
    <tr>
      <th>Username</th>
      <th>Created</th>
      <th>Last Login</th>
      <th>Login Count</th>
      <th class="no-sort">Action</th>
    </tr>
  </thead>
  <tbody>
Exemple #4
0
    ?>
  <div class="alert alert-success">
    <?php 
    echo DinklyFlash::get('reset_success');
    ?>
  </div>
<?php 
}
?>
<div class="row">
  <div class="col-md-6 col-md-offset-3 admin-login" align="center">
    <div class="panel panel-primary" align="center" style="width: 80%;">
      <div class="panel-heading">Administrator Access</div>
      <div class="panel-body">
        <?php 
if (DinklyFlash::exists('invalid_login')) {
    ?>
        <div class="alert alert-danger">
          <?php 
    echo DinklyFlash::get('invalid_login');
    ?>
          <button type="button" class="close message-close" aria-hidden="true">&times;</button>
        </div>
        <?php 
}
?>
        <form id="sign-in-form" action="/admin/login/" class="form-horizontal" role="form" method="post">
          <div class="form-group">
            <label for="inputEmail3" class="col-sm-3 control-label">Email</label>
            <div class="col-sm-8">
              <input type="email" class="form-control" id="inputEmail3" placeholder="Email" name="username">
			<div class="col-md-6 col-md-offset-3">
				<?php 
if (DinklyFlash::exists('request_error')) {
    ?>
					<div class="alert alert-danger">
						<?php 
    echo DinklyFlash::get('request_error');
    ?>
						<button type="button" class="close message-close" aria-hidden="true">&times;</button>
					</div>
				<?php 
}
?>

				<?php 
if (DinklyFlash::exists('request_success')) {
    ?>
					<div class="alert alert-success">
						<?php 
    echo DinklyFlash::get('request_success');
    ?>
					</div>
				<?php 
}
?>
			</div>
		</div>

		<form class="form-inline" action="" method="post" style="padding-top: 50px;">
			<div class="form-group">
				<input id="email" name="email" type="text" class="form-control" placeholder="Enter Email Address">
Exemple #6
0
<ol class="breadcrumb">
  <li><a href="/admin/user/">Users</a></li>
  <li class="active">User Detail</li>
</ol>

<?php 
if (DinklyFlash::exists('good_user_message')) {
    ?>
<div class="alert alert-success">
  <?php 
    echo DinklyFlash::get('good_user_message');
    ?>
  <button type="button" class="close message-close" aria-hidden="true">&times;</button>
</div>
<?php 
}
?>

<h3>User Detail <button type="button" data-toggle="modal" data-target="#delete-user-modal" class="pull-right btn btn-link">Delete User</button></h3>
<hr>
<div class="row">
	<div class="col-md-5">
		<form class="form-horizontal" role="form" action="" method="post" id="user-detail-form">	  
			<legend>User Info <button style="" type="button" class="btn btn-xs btn-link btn-edit-user">Edit</button></legend>
			<div class="form-group">
				<label class="col-sm-3 control-label" for="created">Created</label>
				<div class="col-md-7">
					<input value="<?php 
echo $user->getCreatedAt($date_format);
?>
" type="text" disabled="disabled" class="form-control" id="created" name="created">
Exemple #7
0
<ol class="breadcrumb">
  <li><a href="/admin/group/">Groups</a></li>
  <li class="active">Group Detail</li>
</ol>

<?php 
if (DinklyFlash::exists('good_group_message')) {
    ?>
<div class="alert alert-success">
  <?php 
    echo DinklyFlash::get('good_group_message');
    ?>
  <button type="button" class="close message-close" aria-hidden="true">&times;</button>
</div>
<?php 
}
?>

<h3>Group Detail <button type="button" data-toggle="modal" data-target="#delete-group-modal" class="pull-right btn btn-link">Delete Group</button></h3>
<hr>
<div class="row">
	<div class="col-md-7">
		<form class="form-horizontal" role="form" action="" method="post" id="user-detail-form">	  
			<legend>Group Info <button style="" type="button" class="btn btn-xs btn-link btn-edit-group">Edit</button></legend>
			<div class="form-group">
				<label class="col-sm-3 control-label" for="name">Name</label>
				<div class="col-md-5">
					<input value="<?php 
echo $group->getName();
?>
" type="text" disabled="disabled" class="form-control" id="name" name="name">
			<div class="col-md-6 col-md-offset-3">
				<?php 
if (DinklyFlash::exists('reset_error')) {
    ?>
					<div class="alert alert-danger">
						<?php 
    echo DinklyFlash::get('reset_error');
    ?>
						<button type="button" class="close message-close" aria-hidden="true">&times;</button>
					</div>
				<?php 
}
?>

				<?php 
if (DinklyFlash::exists('reset_success')) {
    ?>
					<div class="alert alert-success">
						<?php 
    echo DinklyFlash::get('reset_success');
    ?>
					</div>
				<?php 
}
?>
			</div>
		</div>

		<div class="row">
			<form class="form-inline" action="" method="post" style="padding-top: 50px;">
				<div class="form-group">