Exemple #1
0
  <!-- Content Wrapper. Contains page content -->
  <div class="content-wrapper">
    <!-- Content Header (Page header) -->
    <section class="content-header">
      <h1>
        Contributions
      </h1>
    </section>
    <?php 
if ($searchKey != "") {
    $dataList = $contributionController->search($searchKey, $offset, $rowsPerPage);
} else {
    if ($status == "") {
        $dataList = $contributionController->getAll($offset, $rowsPerPage);
    } else {
        $dataList = $contributionController->getByStatus($status, $offset, $rowsPerPage);
    }
}
if ($dataList) {
    ?>

    <!-- Main content -->
    <section class="content">
      <div class="row">
        <div class="col-xs-12">
          <div class="box">
            <div class="box-header">
              <h3 class="box-title">All</h3><i> (<?php 
    echo count($dataList);
    ?>
)</i>