Lines Matching refs:options
24 public $options=array(); variable in syntax_plugin_dbtables
77 if (substr($rawline,0,1)==$this->options["thead"]) {
83 … $TableData[$CurrentTable].="^$CurrentTable".substr("^^^^^^^^^^",0,$this->options["cols"])."\n";
85 for($ColPos=1;$ColPos<=$this->options["cols"];$ColPos++)
86 $TableData[$CurrentTable].="^".$this->options["c".$ColPos]." ";
94 $RowInfo=explode($this->options["fdelim"],$rawline);
96 $RowsOut=$this->options["cols"];
113 if ($this->options["nosort"]=="")
117 if ($this->options["twidth"]!="")
118 $res.=" width='".$this->options["twidth"]."'>";
127 if ($this->options["norender"]=="")
128 …$td="<td class='dbtables-td_".$CurTablePos % $this->options["groups"]."'>".p_render($mode,p_get_in…
133 if (($CurTablePos % $this->options["groups"] ) == 0) {
138 … $res.="\n<tr class='dbtables-tr_".$CurTablePos % $this->options["groups"]."' valign='top'>\n";
158 $this->options["groups"]=4; // How many HTML tables across we want to see
159 $this->options["cols"]=4; // How many headings for each DB field do we want?
160 $this->options["c1"]="Field"; // Default texts for fields
161 $this->options["c2"]="Type";
162 $this->options["c3"]="Relation";
163 $this->options["c4"]="Desc";
164 … $this->options["fdelim"]=":"; // The character used to delimit what goes between fields
165 $this->options["thead"]="_"; // The character used to indicate the table name
173 $this->options[$p[0]]=$p[1];