2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Lets you include a nested group of fields inside a template.
|
|
|
|
* This control gives you more flexibility over form layout.
|
|
|
|
*
|
2009-06-27 09:00:01 +02:00
|
|
|
* Note: the child fields within a field group aren't rendered using FieldHolder(). Instead,
|
2007-07-19 12:40:28 +02:00
|
|
|
* SmallFieldHolder() is called, which just prefixes $Field with a <label> tag, if the Title is set.
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage fields-structural
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class FieldGroup extends CompositeField {
|
|
|
|
protected $zebra;
|
2007-11-19 02:51:32 +01:00
|
|
|
public $subfieldParam = "SmallFieldHolder";
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
function __construct($arg1 = null, $arg2 = null) {
|
|
|
|
if(is_array($arg1) || is_a($arg1, 'FieldSet')) {
|
|
|
|
$fields = $arg1;
|
|
|
|
|
|
|
|
} else if(is_array($arg2) || is_a($arg2, 'FieldSet')) {
|
|
|
|
$this->title = $arg1;
|
|
|
|
$fields = $arg2;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$fields = func_get_args();
|
|
|
|
if(!is_object(reset($fields))) $this->title = array_shift($fields);
|
|
|
|
}
|
|
|
|
|
|
|
|
parent::__construct($fields);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the name (ID) for the element.
|
|
|
|
* In some cases the FieldGroup doesn't have a title, but we still want
|
|
|
|
* the ID / name to be set. This code, generates the ID from the nested children
|
|
|
|
*/
|
|
|
|
function Name(){
|
|
|
|
if(!$this->title) {
|
|
|
|
$fs = $this->FieldSet();
|
|
|
|
$compositeTitle = '';
|
|
|
|
$count = 0;
|
|
|
|
foreach($fs as $subfield){
|
|
|
|
$compositeTitle .= $subfield->Name();
|
|
|
|
if($subfield->Name()) $count++;
|
|
|
|
}
|
|
|
|
if($count == 1) $compositeTitle .= 'Group';
|
|
|
|
return ereg_replace("[^a-zA-Z0-9]+","",$compositeTitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ereg_replace("[^a-zA-Z0-9]+","",$this->title);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a set of <span class="subfield"> tags, each containing a sub-field.
|
|
|
|
* You can also use <% control FieldSet %>, if you'd like more control over the generated HTML
|
|
|
|
*
|
2008-01-11 02:49:50 +01:00
|
|
|
* @todo Shouldn't use SmallFieldHolder() (very difficult to style),
|
2007-07-19 12:40:28 +02:00
|
|
|
* it is easier to overwrite the <div class="field"> behaviour in a more specific class
|
|
|
|
*/
|
|
|
|
function Field() {
|
|
|
|
$fs = $this->FieldSet();
|
|
|
|
$spaceZebra = isset($this->zebra) ? " $this->zebra" : '';
|
|
|
|
$idAtt = isset($this->id) ? " id=\"{$this->id}\"" : '';
|
2008-08-11 05:10:59 +02:00
|
|
|
$content = "<div class=\"fieldgroup$spaceZebra\"$idAtt>";
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($fs as $subfield) {
|
2008-08-11 05:10:59 +02:00
|
|
|
$childZebra = (!isset($childZebra) || $childZebra == "odd") ? "even" : "odd";
|
|
|
|
if($subfield->hasMethod('setZebra')) $subfield->setZebra($childZebra);
|
|
|
|
$content .= "<div class=\"fieldgroupField\">" . $subfield->{$this->subfieldParam}() . "</div>";
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2008-08-11 05:10:59 +02:00
|
|
|
$content .= "</div>";
|
2007-07-19 12:40:28 +02:00
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setID($id) {
|
|
|
|
$this->id = Convert::raw2att($id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set an odd/even class
|
|
|
|
*/
|
|
|
|
function setZebra($zebra) {
|
|
|
|
if($zebra == 'odd' || $zebra == 'even') $this->zebra = $zebra;
|
|
|
|
else user_error("setZebra passed '$zebra'. It should be passed 'odd' or 'even'", E_USER_WARNING);
|
|
|
|
}
|
|
|
|
|
|
|
|
function FieldHolder() {
|
2009-02-02 00:49:53 +01:00
|
|
|
$Title = $this->XML_val('Title');
|
|
|
|
$Message = $this->XML_val('Message');
|
|
|
|
$MessageType = $this->XML_val('MessageType');
|
|
|
|
$RightTitle = $this->XML_val('RightTitle');
|
|
|
|
$Type = $this->XML_val('Type');
|
|
|
|
$extraClass = $this->XML_val('extraClass');
|
|
|
|
$Name = $this->XML_val('Name');
|
|
|
|
$Field = $this->XML_val('Field');
|
|
|
|
|
|
|
|
$titleBlock = (!empty($Title)) ? "<label class=\"left\">$Title</label>" : "";
|
|
|
|
$messageBlock = (!empty($Message)) ? "<span class=\"message $MessageType\">$Message</span>" : "";
|
|
|
|
$rightTitleBlock = (!empty($RightTitle)) ? "<label class=\"right\">$RightTitle</label>" : "";
|
|
|
|
|
|
|
|
return <<<HTML
|
|
|
|
<div id="$Name" class="field $Type $extraClass">$titleBlock<div class="middleColumn">$Field</div>$rightTitleBlock$messageBlock</div>
|
|
|
|
HTML;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function Message() {
|
|
|
|
$fs = $this->FieldSet();
|
|
|
|
foreach($fs as $subfield) {
|
|
|
|
if($m = $subfield->Message()) $message[] = $m;
|
|
|
|
}
|
|
|
|
if(isset($message)) return implode(", ", $message) . ". ";
|
|
|
|
}
|
|
|
|
|
|
|
|
function MessageType(){
|
|
|
|
$fs = $this->FieldSet();
|
|
|
|
foreach($fs as $subfield) {
|
|
|
|
if($m = $subfield->MessageType()) $MessageType[] = $m;
|
|
|
|
}
|
|
|
|
if(isset($MessageType)) {
|
|
|
|
return implode(". ", $MessageType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This allows fields within this fieldgroup to still allow them to get valuated.
|
|
|
|
*/
|
|
|
|
function jsValidation(){
|
|
|
|
$fs = $this->FieldSet();
|
|
|
|
$validationCode = '';
|
|
|
|
|
|
|
|
foreach($fs as $subfield) {
|
|
|
|
if($value = $subfield->jsValidation()) {
|
|
|
|
$validationCode .= $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $validationCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
function php($data){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|