blob: 460b45457ca8d2e52a4e5820ace370771ac19610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/**
* TAccordion class file.
*
* @author Gabor Berczi, DevWorx Hungary <gabor.berczi@devworx.hu>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\WebControls
* @since 3.2
*/
namespace Prado\Web\UI\WebControls;
use Prado\Exceptions\TInvalidDataTypeException;
/**
* Class TAccordionViewCollection.
*
* TAccordionViewCollection is a collection of {@link TAccordionView} to be used inside a {@link TAccordion}.
*
* @author Gabor Berczi, DevWorx Hungary <gabor.berczi@devworx.hu>
* @package Prado\Web\UI\WebControls
* @since 3.2
*/
class TAccordionViewCollection extends \Prado\Web\UI\TControlCollection
{
/**
* Inserts an item at the specified position.
* This overrides the parent implementation by performing sanity check on the type of new item.
* @param integer the speicified position.
* @param mixed new item
* @throws TInvalidDataTypeException if the item to be inserted is not a {@link TAccordionView} object.
*/
public function insertAt($index,$item)
{
if($item instanceof TAccordionView)
parent::insertAt($index,$item);
else
throw new TInvalidDataTypeException('tabviewcollection_tabview_required');
}
/**
* Finds the index of the accordion view whose ID is the same as the one being looked for.
* @param string the explicit ID of the accordion view to be looked for
* @return integer the index of the accordion view found, -1 if not found.
*/
public function findIndexByID($id)
{
foreach($this as $index=>$view)
{
if($view->getID(false)===$id)
return $index;
}
return -1;
}
}
|