mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
APICHANGE: changed the modulus offset to 1 to correctly order sets
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@103792 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
04f7fab204
commit
655faf0c39
@ -611,16 +611,16 @@ class ViewableData extends Object implements IteratorAggregate {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the modulus of the numerical position of the item in the data set.
|
* Returns the modulus of the numerical position of the item in the data set.
|
||||||
* The count starts from $startIndex, which defaults to 0.
|
* The count starts from $startIndex, which defaults to 1.
|
||||||
* @param int $Mod The number to perform Mod operation to.
|
* @param int $Mod The number to perform Mod operation to.
|
||||||
* @param int $startIndex Number to start count from.
|
* @param int $startIndex Number to start count from.
|
||||||
* @return int
|
* @return int
|
||||||
*/
|
*/
|
||||||
public function Modulus($mod, $startIndex = 0) {
|
public function Modulus($mod, $startIndex = 1) {
|
||||||
return ($this->iteratorPos + $startIndex) % $mod;
|
return ($this->iteratorPos + $startIndex) % $mod;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function MultipleOf($factor, $offset = 0) {
|
public function MultipleOf($factor, $offset = 1) {
|
||||||
return ($this->Modulus($factor, $offset) == 0);
|
return ($this->Modulus($factor, $offset) == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ class DataObjectSetTest extends SapphireTest {
|
|||||||
public function testMultipleOf() {
|
public function testMultipleOf() {
|
||||||
$comments = DataObject::get('PageComment', '', "\"ID\" ASC");
|
$comments = DataObject::get('PageComment', '', "\"ID\" ASC");
|
||||||
$commArr = $comments->toArray();
|
$commArr = $comments->toArray();
|
||||||
$multiplesOf3 = 0;
|
$multiplesOf3 = 1;
|
||||||
|
|
||||||
foreach($comments as $comment) {
|
foreach($comments as $comment) {
|
||||||
if($comment->MultipleOf(3)) {
|
if($comment->MultipleOf(3)) {
|
||||||
@ -93,13 +93,13 @@ class DataObjectSetTest extends SapphireTest {
|
|||||||
|
|
||||||
$this->assertEquals(3, $multiplesOf3);
|
$this->assertEquals(3, $multiplesOf3);
|
||||||
|
|
||||||
$this->assertTrue($commArr[0]->IsMultipleOf3);
|
$this->assertFalse($commArr[0]->IsMultipleOf3);
|
||||||
$this->assertFalse($commArr[1]->IsMultipleOf3);
|
$this->assertFalse($commArr[1]->IsMultipleOf3);
|
||||||
$this->assertFalse($commArr[2]->IsMultipleOf3);
|
$this->assertTrue($commArr[2]->IsMultipleOf3);
|
||||||
$this->assertTrue($commArr[3]->IsMultipleOf3);
|
$this->assertFalse($commArr[3]->IsMultipleOf3);
|
||||||
$this->assertFalse($commArr[4]->IsMultipleOf3);
|
$this->assertFalse($commArr[4]->IsMultipleOf3);
|
||||||
$this->assertFalse($commArr[5]->IsMultipleOf3);
|
$this->assertTrue($commArr[5]->IsMultipleOf3);
|
||||||
$this->assertTrue($commArr[6]->IsMultipleOf3);
|
$this->assertFalse($commArr[6]->IsMultipleOf3);
|
||||||
|
|
||||||
foreach($comments as $comment) {
|
foreach($comments as $comment) {
|
||||||
if($comment->MultipleOf(3, 1)) {
|
if($comment->MultipleOf(3, 1)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user