📄 languagesparser.class.php
字号:
<?php/************************************************************************//* ATutor *//************************************************************************//* Copyright (c) 2002-2004 by Greg Gay, Joel Kronenberg & Heidi Hazelton*//* Adaptive Technology Resource Centre / University of Toronto *//* http://atutor.ca *//* *//* This program is free software. You can redistribute it and/or *//* modify it under the terms of the GNU General Public License *//* as published by the Free Software Foundation. *//************************************************************************/// $Id: LanguagesParser.class.php 5319 2005-08-18 15:05:13Z joel $require_once(dirname(__FILE__) . '/LanguageParser.class.php');/*** LanguagesParser* Class for parsing XML languages info and returning a Language Objects* @access public* @author Joel Kronenberg* @package Language*/class LanguagesParser extends LanguageParser { // private function startElement($parser, $name, $attributes) { if ($name == 'languages') { // strip off the initial 'languages' $this->element_path = array(); } else { parent::startElement($this->parser, $name, $attributes); } } }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -