Lines Matching refs:obj
205 $obj = plugin_load('syntax', $p);
206 if (!$obj instanceof PluginInterface) continue;
207 $PARSER_MODES[$obj->getType()][] = "plugin_$p";
209 'sort' => $obj->getSort(),
211 'obj' => $obj,
213 unset($obj);
232 $obj = new $class();
234 'sort' => $obj->getSort(),
236 'obj' => $obj,
241 $obj = new Smiley(array_keys(getSmileys()));
242 $this->modes[] = ['sort' => $obj->getSort(), 'mode' => 'smiley', 'obj' => $obj];
244 $obj = new Acronym(array_keys(getAcronyms()));
245 $this->modes[] = ['sort' => $obj->getSort(), 'mode' => 'acronym', 'obj' => $obj];
247 $obj = new Entity(array_keys(getEntities()));
248 $this->modes[] = ['sort' => $obj->getSort(), 'mode' => 'entity', 'obj' => $obj];
252 $obj = new Camelcaselink();
253 $this->modes[] = ['sort' => $obj->getSort(), 'mode' => 'camelcaselink', 'obj' => $obj];