Home
last modified time | relevance | path

Searched refs:obj_xml (Results 1 – 18 of 18) sorted by relevance

/dports/www/nibbleblog/nibbleblog/admin/kernel/
H A Dclass.config_dbxml.php64 if( !($this->obj_xml->asXML($this->file_xml)) )
73 $tmp_node = $this->obj_xml;
92 return( (string) utf8_decode( $this->obj_xml->name ) );
117 return( (string) utf8_decode( $this->obj_xml->footer ) );
122 return( (string) utf8_decode( $this->obj_xml->about ) );
127 return( (string) utf8_decode( $this->obj_xml->url ) );
132 return( (string) utf8_decode( $this->obj_xml->path ) );
162 unset($this->obj_xml->plugins);
164 $this->obj_xml->ADD_Element('plugins','');
169 $this->obj_xml->plugins->ADD_Element('plugin',$plugin);
[all …]
H A Dclass.post_dbxml.php46 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
107 if( !($this->obj_xml->asXML($this->file_xml)) )
121 return( (int) $this->obj_xml['autoinc'] );
126 $this->obj_xml['autoinc'] = $value + $this->get_autoinc();
198 $obj_xml->content = utf8_encode($ARGS['content']);
199 $obj_xml->mod_date = utf8_encode($this->unixstamp());
211 if( !$obj_xml->asXml( PATH_POSTS . $this->files[0] ) )
222 $this->obj_xml->sticky->ADD_Element('id', $idpost);
268 $content = (string) utf8_decode($obj_xml->content);
277 $tmp_array['type'] = (string) utf8_decode($obj_xml->type);
[all …]
H A Dclass.profiles_dbxml.php20 public $obj_xml; // Contains the object of the blog_config.xml file variable in PROFILES_DBXML
38 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
64 if( !($this->obj_xml->asXML($this->file_xml)) )
73 $tmp_node = $this->obj_xml->profile[0];
106 return( (string) utf8_decode($this->obj_xml->profile[0]->email) );
111 return( (string) utf8_decode($this->obj_xml->profile[0]->msn) );
116 return( (string) utf8_decode($this->obj_xml->profile[0]->aim) );
121 return( (string) utf8_decode($this->obj_xml->profile[0]->yahooim) );
126 return( (string) utf8_decode($this->obj_xml->profile[0]->gtalk) );
131 return( (string) utf8_decode($this->obj_xml->profile[0]->twitter) );
[all …]
H A Dclass.categories_dbxml.php20 public $obj_xml; // Contains the object of the blog_config.xml file variable in CATEGORIES_DBXML
38 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
64 if( !($this->obj_xml->asXML($this->file_xml)) )
73 return( (int) $this->obj_xml['autoinc'] );
78 $this->obj_xml['autoinc'] = $value + $this->get_autoinc();
95 $new_node = $this->obj_xml->ADD_Element('category','');
106 foreach( $this->obj_xml->children() as $children )
120 $tmp_node = $this->obj_xml->xpath('/categories/category[@id="'.$id.'"]');
156 $tmp_node = $this->obj_xml->xpath('/categories/category[@id="'.$id.'"]');
172 return( count( $this->obj_xml ) );
[all …]
H A Dclass.tags_dbxml.php20 public $obj_xml; // Contains the object of the blog_config.xml file variable in TAGS_DBXML
38 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
64 if( !($this->obj_xml->asXML($this->file_xml)) )
73 return( (int) $this->obj_xml['autoinc'] );
78 $this->obj_xml['autoinc'] = $value + $this->get_autoinc();
95 $tmp = $this->obj_xml->xpath('/tags/linked//id[@idtag='.$idtag.']');
106 $tmp_node = $this->obj_xml->xpath('/tags/list/tag[@word="'.$tag.'"]');
148 $new_node = $this->obj_xml->list->ADD_Element('tag','');
157 $new_node = $this->obj_xml->linked->ADD_Element('id','');
183 $tags = $this->obj_xml->xpath('/tags/list//tag');
[all …]
H A Dclass.comments_dbxml.php20 public $obj_xml; // Contains the object of the blog_config.xml file variable in COMMENTS_DBXML
41 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
67 if( !($this->obj_xml->asXML($this->file_xml)) )
76 return( (int) $this->obj_xml['autoinc'] );
81 $this->obj_xml['autoinc'] = $value + $this->get_autoinc();
95 $this->obj_xml->spam->ADD_Element('ip', $ip);
101 foreach( $this->obj_xml->spam->children() as $children )
110 $tmp_node = $this->obj_xml->xpath('/comments/spam/ip[.="'.$ip.'"]');
194 $obj_xml = new NBXML(PATH_COMMENTS . $file, 0, TRUE, '', FALSE);
208 $tmp_array['content'] = (string) utf8_decode($obj_xml->content);
[all …]
H A Dclass.links_dbxml.php20 public $obj_xml; // Contains the object of the blog_config.xml file variable in LINKS_DBXML
38 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
64 if( !($this->obj_xml->asXML($this->file_xml)) )
73 return( (int) $this->obj_xml['autoinc'] );
78 $this->obj_xml['autoinc'] = $value + $this->get_autoinc();
86 return( $this->obj_xml->xpath('//link[@id='.$id.']') != array() );
91 $new_node = $this->obj_xml->ADD_Element('link','');
101 foreach( $this->obj_xml->children() as $children )
115 $tmp_node = $this->obj_xml->xpath('//link[@id='.$id.']');
131 $tmp_node = $this->obj_xml->xpath('//link[@id='.$id.']');
H A Dclass.syslog_dbxml.php20 public $obj_xml; // Contains the object of the blog_config.xml file variable in SYSLOG_DBXML
39 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
65 if( !($this->obj_xml->asXML($this->file_xml)) )
74 if( count( $this->obj_xml->login->session ) > 4)
75 unset( $this->obj_xml->login->session[0] );
77 $node = $this->obj_xml->login->ADD_Element('session','');
87 foreach( $this->obj_xml->login->session as $session )
H A Dclass.rss_dbxml.php20 public $obj_xml; // Contains the object of the blog_config.xml file variable in RSS_DBXML
38 $this->obj_xml = new NBXML($this->file_xml, 0, TRUE, '', FALSE);
64 if( !($this->obj_xml->asXML($this->file_xml)) )
73 unset($this->obj_xml->channel);
75 $node = $this->obj_xml->ADD_Element('channel', '');
85 $node = $this->obj_xml->channel->ADD_Element('item', '');
/dports/databases/pgmodeler/pgmodeler-0.9.3-beta/main-cli/src/
H A Dpgmodelercli.cpp1233 start_idx=obj_xml.indexOf(name_attr); in fixObjectAttributes()
1256 obj_xml.remove(start_idx, len); in fixObjectAttributes()
1282 obj_xml.remove(QString("less-op")); in fixObjectAttributes()
1283 obj_xml.remove(QString("sort-op")); in fixObjectAttributes()
1284 obj_xml.remove(QString("sort2-op")); in fixObjectAttributes()
1341 regexp.indexIn(obj_xml); in fixObjectAttributes()
1379 obj_xml.remove(sig_idx, len); in fixObjectAttributes()
1380 obj_xml.insert(sig_idx, signature); in fixObjectAttributes()
1815 end=obj_xml.indexOf(end_tag, start); in extractForeignKeys()
1820 constr=obj_xml.mid(start, count); in extractForeignKeys()
[all …]
H A Dpgmodelercli.h212 void fixObjectAttributes(QString &obj_xml);
216 QStringList extractForeignKeys(QString &obj_xml);
228 void fixOpClassesFamiliesReferences(QString &obj_xml);
/dports/www/ilias/ILIAS-5.4.25/webservice/soap/include/
H A Dinc.soap_functions.php264 public static function updateObjects($sid, $obj_xml) argument
270 return $soa->updateObjects($sid, $obj_xml);
375 public static function addRole($sid, $target_id, $obj_xml) argument
381 return $soa->addRole($sid, $target_id, $obj_xml);
383 public static function addRoleFromTemplate($sid, $target_id, $obj_xml, $template_id) argument
389 return $soa->addRoleFromTemplate($sid, $target_id, $obj_xml, $template_id);
/dports/www/ilias6/ILIAS-6.14/webservice/soap/include/
H A Dinc.soap_functions.php274 public static function updateObjects($sid, $obj_xml) argument
280 return $soa->updateObjects($sid, $obj_xml);
385 public static function addRole($sid, $target_id, $obj_xml) argument
391 return $soa->addRole($sid, $target_id, $obj_xml);
393 public static function addRoleFromTemplate($sid, $target_id, $obj_xml, $template_id) argument
399 return $soa->addRoleFromTemplate($sid, $target_id, $obj_xml, $template_id);
/dports/converters/p5-Storable-AMF/Storable-AMF-1.00/t/
H A DGrianUtils.pm92 $item->{obj_xml} = eval $item->{xml};
97 $item->{obj_xml} = $item->{obj};
H A D02-parse_amf3.t21 …my ($name, $image_amf3, $image_amf0, $obj, $eval) = @$packet{qw(name amf3 amf0 obj_xml eval_xml)};
H A D01-parse_amf0.t27 delete @$packet{ 'obj_xml', 'xml', 'dump', 'eval_xml', 'obj'};
/dports/math/py-networkx/networkx-2.6.3/networkx/readwrite/
H A Dgraphml.py943 def decode_data_elements(self, graphml_keys, obj_xml): argument
946 for data_element in obj_xml.findall(f"{{{self.NS_GRAPHML}}}data"):
H A Dgexf.py952 def decode_attr_elements(self, gexf_keys, obj_xml): argument
956 attr_element = obj_xml.find(f"{{{self.NS_GEXF}}}attvalues")