1<?php 2 3namespace plugin\struct\meta; 4 5use plugin\struct\types\AbstractBaseType; 6 7/** 8 * Class Column 9 * 10 * This represents a single column within a schema and contains the configured BaseType as well as the 11 * column reference to the data table. 12 * 13 * It basically combines the information how a column's content behaves (as defines in the BaseType and its 14 * configuration) with where to find that content and adds some basic meta data (like sort or enabled) 15 * 16 * @package plugin\struct\meta 17 */ 18class Column { 19 20 /** @var int fields are sorted by this value */ 21 protected $sort; 22 /** @var AbstractBaseType the type of this column */ 23 protected $type; 24 /** @var int the column in the datatable. columns count from 1 */ 25 protected $colref; 26 /** @var bool is this column still enabled? */ 27 protected $enabled=true; 28 /** @var string backreference to the table this column is part of */ 29 protected $table; 30 31 /** 32 * Column constructor. 33 * @param int $sort 34 * @param AbstractBaseType $type 35 * @param int $colref 36 * @param bool $enabled 37 * @param string $table 38 */ 39 public function __construct($sort, AbstractBaseType $type, $colref=0, $enabled=true, $table='') { 40 $this->sort = (int) $sort; 41 $this->type = $type; 42 $this->colref = (int) $colref; 43 $this->enabled = (bool) $enabled; 44 $this->table = $table; 45 } 46 47 /** 48 * @return int 49 */ 50 public function getSort() { 51 return $this->sort; 52 } 53 54 /** 55 * @return int 56 */ 57 public function getTid() { 58 return $this->type->getTid(); 59 } 60 61 /** 62 * @return string 63 */ 64 public function getLabel() { 65 return $this->type->getLabel(); 66 } 67 68 /** 69 * @return AbstractBaseType 70 */ 71 public function getType() { 72 return $this->type; 73 } 74 75 /** 76 * @return int 77 */ 78 public function getColref() { 79 return $this->colref; 80 } 81 82 /** 83 * Returns the full column name. When table is set, prefixed by the table name 84 * 85 * @return string 86 */ 87 public function getColName() { 88 $col = 'col'.$this->colref; 89 if($this->table) $col = $this->table.'.'.$col; 90 return $col; 91 } 92 93 /** 94 * @return boolean 95 */ 96 public function isEnabled() { 97 return $this->enabled; 98 } 99 100 /** 101 * @return string 102 */ 103 public function getTable() { 104 return $this->table; 105 } 106 107 /** 108 * @return bool 109 */ 110 public function isMulti() { 111 return $this->type->isMulti(); 112 } 113 114 /** 115 * Returns a list of all available types 116 * 117 * @return array 118 */ 119 static public function allTypes() { 120 $types = array(); 121 $files = glob(DOKU_PLUGIN . 'struct/types/*.php'); 122 foreach($files as $file) { 123 $file = basename($file, '.php'); 124 if(substr($file, 0, 8) == 'Abstract') continue; 125 $types[] = $file; 126 } 127 sort($types); 128 129 return $types; 130 } 131 132} 133