Changeset 14329 for trunk/midcom/midcom.core/midcom/services/indexer.php
- Timestamp:
- 01/09/08 00:20:19 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.core/midcom/services/indexer.php
r14179 r14329 63 63 * 64 64 * @access private 65 * @var bool 65 * @var boolean 66 66 */ 67 67 var $_disabled = false; … … 101 101 * Simple helper, returns true if the indexer service is online, false if it is disabled. 102 102 * 103 * @return bool Service state.103 * @return boolean Service state. 104 104 */ 105 105 function enabled() … … 122 122 * @param mixed $documents One or more documents to be indexed, so this is either a 123 123 * midcom_services_indexer_document or an Array of these objects. 124 * @return bool Indicating success.124 * @return boolean Indicating success. 125 125 */ 126 126 function index ($documents) … … 177 177 * @param object $object A reference to the supported object types which allow for automatic 178 178 * casting (see above). 179 * @return bool Indicating success.179 * @return boolean Indicating success. 180 180 * @access protected 181 181 */ … … 207 207 * 208 208 * @param string $RI The resource identifier of the document that should be deleted. 209 * @return bool Indicating success.209 * @return boolean Indicating success. 210 210 */ 211 211 function delete ($RI) … … 224 224 * This will drop the current index. 225 225 * 226 * @return bool Indicating success.226 * @return boolean Indicating success. 227 227 */ 228 228 function delete_all()
