本文整理汇总了PHP中MyOOS_CoreApi::error方法的典型用法代码示例。如果您正苦于以下问题:PHP MyOOS_CoreApi::error方法的具体用法?PHP MyOOS_CoreApi::error怎么用?PHP MyOOS_CoreApi::error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MyOOS_CoreApi
的用法示例。
在下文中一共展示了MyOOS_CoreApi::error方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: list
/**
* Return the active lock system.
*
* @param boolean $canInit (optional) if false and lockSystem isn't yet initialized, return null
* @return array GalleryStatus a status code
* GalleryLockSystem the lock implementation (reference)
*/
function &getLockSystem($canInit = true)
{
if (!isset($this->_lockSystem)) {
if ($canInit) {
list($ret, $which) = MyOOS_CoreApi::getPluginParameter('module', 'core', 'lock.system');
if ($ret) {
$ret = array($ret, null);
return $ret;
}
} else {
$which = 'null';
}
switch ($which) {
case 'flock':
MyOOS_CoreApi::requireOnce('modules/core/classes/FlockLockSystem.class');
$this->_lockSystem = new FlockLockSystem();
break;
case 'database':
MyOOS_CoreApi::requireOnce('modules/core/classes/DatabaseLockSystem.class');
$this->_lockSystem = new DatabaseLockSystem();
break;
case 'null':
$this->_lockSystem = null;
break;
default:
$ret = array(MyOOS_CoreApi::error(ERROR_BAD_PARAMETER), null);
return $ret;
}
}
$ret = array(null, &$this->_lockSystem);
return $ret;
}
示例2: removeMapEntry
/**
* Remove entries from a map
*
* @param string $mapName the map we're working on
* @param array $data an associative array of data about the entries to match
* @return GalleryStatus a status code
*/
function removeMapEntry($mapName, $data)
{
global $gallery;
if (sizeof($data) == 0) {
return MyOOS_CoreApi::error(ERROR_BAD_PARAMETER);
}
$storage =& $gallery->getStorage();
$ret = $storage->removeMapEntry($mapName, $data);
if ($ret) {
return $ret;
}
return null;
}