⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 class.atombuildercontent.inc.php

📁 太烦了
💻 PHP
字号:
<?php
require_once 'class.AtomBuilderBase.inc.php';

/**
* Class for creating an Atom-Feed
* @author Michael Wimmer <flaimo@gmx.net>
* @category FLP
* @copyright Copyright 漏 2002-2006, Michael Wimmer
* @license Free for non-commercial use
* @link http://flp.sf.net/
* @package Atom
* @version 1.00RC2
*/
class AtomBuilderContent extends AtomBuilderText {

	protected $link;

	function __construct($data = '', $type = 'text', $link = '') {
		parent::__construct($data, $type);
		if (parent::isFilledString($link)) {
			$this->setLink($link);
		} // end if
	} // end constructor

	public function setLink($string = '') {
		return parent::setVar($string, 'link', 'string');
	} // end function

	public function setContentType($string = '') {
		if (in_array($string, $this->allowed_types) == TRUE || preg_match('(^[a-zA-Z0-9]+/[a-zA-Z0-9]+$)', $string) > 0) {
			return parent::setVar($string, 'type', 'string');
		} // end if
		return FALSE;
	} // end function

/*
	public function setMode($string = 'escaped') {
		if (array_key_exists($string, $this->allowed_modes) == TRUE) {
			if (!isset($this->type)) {
				return parent::setVar($string, 'mode', 'string');
			} // end if

			foreach ($this->allowed_modes as $mode => $types) {
				if (in_array($this->type, $types) == TRUE) {
					return parent::setVar($mode, 'mode', 'string');
				} // end if
			} // end foreach

			return parent::setVar($string, 'mode', 'string');
		} // end if
	} // end function
*/
	public function getLink() {
		return parent::getVar('link');
	} // end function
} // end class
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -