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

📄 customfieldcheckboxvalue.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php	lt_include( PLOG_CLASS_PATH."class/dao/customfields/customfieldvalue.class.php" );		/**	 * offers methods for dealing with checkboxes	 *	 * \ingroup DAO	 */	class CustomFieldCheckboxValue extends CustomFieldValue	{		/**		 * constructor		 *		 * @see CustomFieldValue		 */		function CustomFieldCheckboxValue( $fieldId, $fieldValue, $articleId, $blogId, $id = -1 )		{			$this->CustomFieldValue( $fieldId, $fieldValue, $articleId, $blogId, $id );						$this->setValue( $fieldValue );		}				/**		 * returns whether the checkbox is enabled or not		 *		 * @return boolean		 */		function isChecked()		{			return( $this->getValue() == "1" );		}	}?>

⌨️ 快捷键说明

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