This example shows some of most used methods for filtering in DataStore
.
Beside above most used methods, there are number of additional methods:
all()
: Return all rows
top($size,$offset)
: Get the top {$size} rows starting from {$offset}
topByPercent($percent)
: Get top percent of rows
bottom($size)
: Get the bottom {$size} rows
bottomByPercent($percent)
: Get bottom percent of rows
first($callback)
: Return the first row matching condition defined by callback function
last($callback)
: Return the last row matching condition defined by callback function
take($limit)
: Get number of rows, if $limit is negative, take the bottom
<?php
require_once "MyReport.php";
$report = new MyReport;
$report->run()->render();
<?php
//Step 1: Load KoolReport
require_once "../../../load.koolreport.php";
use \koolreport\processes\ColumnMeta;
use \koolreport\processes\Filter;
//Step 2: Creating Report class
class MyReport extends \koolreport\KoolReport
{
protected function settings()
{
return array(
"dataSources"=>array(
"data"=>array(
"class"=>'\koolreport\datasources\ArrayDataSource',
"dataFormat"=>"table",
"data"=>array(
array("name","age","income"),
array("John",26,50000),
array("Marry",29,60000),
array("Peter",34,100000),
array("Donald",28,80000),
)
)
)
);
}
protected function setup()
{
//Prepare data
$this->src("data")
->pipe(new ColumnMeta(array(
"income"=>array(
"type"=>"number",
"prefix"=>"$"
)
)))
->pipe($this->dataStore("data"));
}
}
<?php
use \koolreport\widgets\koolphp\Table;
use \koolreport\widgets\google\LineChart;
?>
<div class="report-content">
<div class="text-center">
<h1>Aggregated Methods</h1>
<p class="lead">Learn about DataStore's aggregated methods</p>
</div>
<h5>Original data</h5>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data"),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
<div class="row">
<div class="col-md-6">
<div class="card">
<div class="card-header">
<b>filter()</b>
</div>
<div class="card-body">
<pre style="font-weight:bold"><code>
$store = $this->dataStore("data")
->filter("income",">",50000);
</code></pre>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data")->filter("income",">",50000),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<b>filter($callback)</b>
</div>
<div class="card-body">
<pre style="font-weight:bold"><code>
$store = $this->dataStore("data")
->filter(function($row){
return $row["income"]>50000;
});
</code></pre>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data")->filter(function($row){
return $row["income"]>50000;
}),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<b>where()</b>
</div>
<div class="card-body">
<pre style="font-weight:bold"><code>
$store = $this->dataStore("data")
->where("income",60000);
</code></pre>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data")->where("income",60000),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<b>except()</b>
</div>
<div class="card-body">
<pre style="font-weight:bold"><code>
$store = $this->dataStore("data")
->except("income","age");
</code></pre>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data")->except("income","age"),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<b>only()</b>
</div>
<div class="card-body">
<pre style="font-weight:bold"><code>
$store = $this->dataStore("data")
->only("name","income");
</code></pre>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data")->only("name","income"),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<b>whereIn()</b>
</div>
<div class="card-body">
<pre style="font-weight:bold"><code>
$store = $this->dataStore("data")
->whereIn("name",["John","Marry"]);
</code></pre>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data")->whereIn("name",["John","Marry"]),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<b>whereNotIn()</b>
</div>
<div class="card-body">
<pre style="font-weight:bold"><code>
$store = $this->dataStore("data")
->whereNotIn("name",["John","Marry"]);
</code></pre>
<?php
Table::create(array(
"dataSource"=>$this->dataStore("data")->whereNotIn("name",["John","Marry"]),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>
</div>
</div>
</div>
<div class="col-md-6">
</div>
</div>
</div>