Lines Matching refs:options

26     public $options=array();  variable in syntax_plugin_itemtable
79 if (trim($this->options["header"])!=""){
81 … $TableData.="^".$this->options["header"].substr("^^^^^^^^^^",0,$this->options["cols"]+1)."\n";
88 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++)
89 $TableData.="^".$this->options["__col"][$ColPos]." ";
92 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) {
102 if (strstr($rawline,$this->options["cell_off"])) {
103 …$RowElements["__col"][$CellActive-1].=" ".substr($rawline,0,strpos($rawline,$this->options["cell_o…
112 if (substr($rawline,0,1)==$this->options["thead"]) {
115 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) {
123 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) {
129 $RowInfo=explode($this->options["fdelim"],$rawline);
131 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) {
132 if ($RowInfo[0]==$this->options["__col"][$ColPos]) {
134 if (strstr($r,$this->options["cell_on"])) {
135 $r=substr(strstr($r,$this->options["cell_on"]),strlen($this->options["cell_on"]));
136 if (strstr($r,$this->options["cell_off"])) {
137 $r=substr($r,0,strpos($r,$this->options["cell_off"]));
151 for($ColPos=0;$ColPos<$this->options["cols"];$ColPos++) {
158 if ($this->options["twidth"]!="")
159 $res.=" width='".$this->options["twidth"]."'>";
165 if ($this->options["norender"]=="")
189 … $this->options["fdelim"]="="; // The character used to delimit what goes between fields
190 $this->options["header"]=""; //
191 $this->options["__col"]=array();
192 $this->options["cell_on"]="<tablecell>";
193 $this->options["cell_off"]="</tablecell>";
194 $this->options["thead"]="_"; // The character used to indicate the table name
200 $this->options["cols"]=0;
207 $this->options["__col"]=array_merge ($this->options["__col"],$pp);
209 $this->options["cols"]++;
212 $this->options[$p[0]]=$p[1];