Carga subconjuntos de ítems que se añaden al conjunto padre.

package ItemsGroup
author Juan Haro
link http://jharo.net/dokuwiki/testmaker
copyright Copyright 2012 Juan Haro
license MIT License

 Methods

A partir de la información proporcionada por un ítem padre que posee un conjunto de ítems, carga un subconjunto que es añadido al conjunto que pertenece el ítem padre.

__construct(\Item $itemPadre) 

El subconjunto adquiere el identificador y título especificado para el ítem padre.

Parameters

$itemPadre

\Item

Añade un nuevo item al array de ítem.

addItem(\Item | string $item, \itemId $id) 
Inherited

La variable $item puede ser un objeto Item o bien una cadena de texto. Si la variable $item es una cadena de texto, crea un nuevo objeto ítem al que le asigna ese texto. Si no recibe identificador, se le asignará un identificador númerico (número de ítems + 1).

inherited_from \ItemsGroup::addItem()

Parameters

$item

\Itemstring

$id

\itemId

Añade un nuevo subconjunto.

addItemsSubGroup(\ItemsGroup $itemsSubGroup) 
Inherited
inherited_from \ItemsGroup::addItemsSubGroup()

Parameters

$itemsSubGroup

\ItemsGroup

getDescription()

getDescription() 
Inherited
inherited_from \ItemsGroup::getDescription()

Recupera las etiquetas contenidas en el objeto Etiquetas almacenado en la variable interna.

getEtiquetas() : \type
Inherited
inherited_from \ItemsGroup::getEtiquetas()

Returns

\type

Recupera el identificador completo de un ítem del conjunto.

getFullItemId(\Item $itemToFind) 
Inherited

El identificador completo se utiliza en el atributo 'name' de los elementos del formulario html. La búsqueda se realiza comparando el hash del ítem pasado con el hash de cada uno de los ítems del conjunto. Por ahora sólo acepta dos niveles de profundidad: Group_SubGroup_Item

inherited_from \ItemsGroup::getFullItemId()

Parameters

$itemToFind

getId()

getId() 
Inherited
inherited_from \ItemsGroup::getId()

getIdsFromTexto()

getIdsFromTexto() 
Inherited
inherited_from \ItemsGroup::getIdsFromTexto()

getImage()

getImage() 
Inherited
inherited_from \ItemsGroup::getImage()

getItems()

getItems() 
Inherited
inherited_from \ItemsGroup::getItems()

Devuelve los subconjuntos de ítems.

getItemsSubGroups() : array
Inherited
inherited_from \ItemsGroup::getItemsSubGroups()

Returns

array

getNewPage()

getNewPage() 
Inherited
inherited_from \ItemsGroup::getNewPage()

getTitle()

getTitle() 
Inherited
inherited_from \ItemsGroup::getTitle()

Carga un array de items en el subconjunto.

loadAndAddItems() 

Crea un nuevo item por cada elemento del array de itemsData y lo añade al array de items.

setDescription()

setDescription($description) 
Inherited
inherited_from \ItemsGroup::setDescription()

Parameters

$description

Crea un objeto de Etiquetas a partir de la información recibida.

setEtiquetas(\type $etiquetas) 
Inherited

También permite la asignación de un objeto Etiquetas.

inherited_from \ItemsGroup::setEtiquetas()

Parameters

$etiquetas

\type

setId()

setId($id) 
Inherited
inherited_from \ItemsGroup::setId()

Parameters

$id

$idsFromTexto = True | False

setIdsFromTexto(boolean $idsFromTexto) 
Inherited
inherited_from \ItemsGroup::setIdsFromTexto()

Parameters

$idsFromTexto

boolean

Recibe la ruta de la imagen.

setImage(string $image) 
Inherited
inherited_from \ItemsGroup::setImage()

Parameters

$image

string

$newPage = True | False

setNewPage(boolean $newPage) 
Inherited
inherited_from \ItemsGroup::setNewPage()

Parameters

$newPage

boolean

setTitle()

setTitle($title) 
Inherited
inherited_from \ItemsGroup::setTitle()

Parameters

$title

getItemsGroupData()

getItemsGroupData() 

itemsGroupData es el array con toda la información del grupo de items extraido del archivo.

setItemsGroupData(array $itemsGroupData) 

Parameters

$itemsGroupData

array

 Properties

 

$etiquetas : \Etiquetas
Inherited

Es un objeto de la clase Etiquetas. Se inicializa a NULL ya que puede existir un grupo de ítems que no contenga etiquetas (p.ej, si se compone de ítems con opción de respuesta múltiple).

inherited_from \ItemsGroup::$$etiquetas
 

$description : string
Inherited

Se muestra bajo el título.

inherited_from \ItemsGroup::$$description
 

$id : string
Inherited

Se utiliza para codificar los ítems. Ej. idGrupo__idPregunta

inherited_from \ItemsGroup::$$id
 

$idsFromTexto : boolean
Inherited
inherited_from \ItemsGroup::$$idsFromTexto
 

$image : string
Inherited
inherited_from \ItemsGroup::$$image
 

$items : array
Inherited
inherited_from \ItemsGroup::$$items
 

$itemsSubGroups 
Inherited
inherited_from \ItemsGroup::$$itemsSubGroups
 

$newPage : boolean
Inherited
inherited_from \ItemsGroup::$$newPage
 

$title : string
Inherited

Se muestra en el encabezado de cada conjunto.

inherited_from \ItemsGroup::$$title
 

$itemsGroupData 

 Constants

 

Se utiliza en la vista para codificar el identificador de los items.

ID_DELIMITER 
Inherited

Ej.: grupo__item1 Ej.: grupo__subgrupo__item1

inherited_from \ItemsGroup::ID_DELIMITER
 

El identificador del elemento html donde se mostrára el conjunto de ítems.

ID_HTML 
Inherited

Se utiliza conjuntamente con un valor numérico para asignar el orden de los conjuntos de ítems mostrados en la plantilla html.

inherited_from \ItemsGroup::ID_HTML
 

Identificador por el que se comienzan a numerar los ítems

ITEM_ID_INICIO 
Inherited
inherited_from \ItemsGroup::ITEM_ID_INICIO
 

Identificador por el que se comienzan a numerar los subconjuntos.

SUBGROUP_ID_INICIO 
Inherited
inherited_from \ItemsGroup::SUBGROUP_ID_INICIO