mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
e4160088e8
- Added comments where needed - Beautified the code where needed, more readable and more compliant to CS - loadResource function in helper fhc_helper.php is not using anymore CI - Moved all constants from UDFWidget to UDFLib - Added constant SORT to UDFLib - Renamed constant REGEX_LANGUAGE to FE_REGEX_LANGUAGE in UDFLib - Better formatting and indentation of the code of WidgetLib (more compliant to CS) - Added missing validation attributes to HTML widgets - Added constant HTML_DEFAULT_VALUE to CheckboxWidget - Unset parameter multiple in DropdownWidget constructor - Changed value of constant REQUIRED in widget HTMLWidget - Added protected property $htmlParameters to widget HTMLWidget (it works as alias to $this->_args[HTMLWidget::HTML_ARG_NAME] -> better code) - Replaced $this->_args[HTMLWidget::HTML_ARG_NAME] with $this->htmlParameters in the widgets - Changed the CSS class label[udf-required=true]::after to label[required-field=true]::after in widgets.css - Better use of constants in UDFWidget: constants from HTMLWidget are used only for the HTML parameters, while constants from UDFLib are used only for UDF parameters
92 lines
1.9 KiB
PHP
92 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* FH-Complete
|
|
*
|
|
* @package FHC-Helper
|
|
* @author FHC-Team
|
|
* @copyright Copyright (c) 2016 fhcomplete.org
|
|
* @license GPLv3
|
|
* @since Version 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* Message Helper
|
|
*
|
|
* @subpackage Helpers
|
|
* @category Helpers
|
|
*/
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
// -------------------------------------------------------------------------------------------------------
|
|
// Collection of functions to handle successful and error messages that methods and functions can return
|
|
// -------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Success
|
|
*
|
|
* @return array
|
|
*/
|
|
function success($retval, $code = null, $msg_indx_prefix = 'fhc_')
|
|
{
|
|
$success = new stdClass();
|
|
$success->error = EXIT_SUCCESS;
|
|
$success->fhcCode = $code;
|
|
if (!is_null($code)) $success->msg = lang($msg_indx_prefix . $code);
|
|
$success->retval = $retval;
|
|
|
|
return $success;
|
|
}
|
|
|
|
/**
|
|
* Error
|
|
*
|
|
* @return array
|
|
*/
|
|
function error($retval = '', $code = null, $msg_indx_prefix = 'fhc_')
|
|
{
|
|
$error = new stdClass();
|
|
$error->error = EXIT_ERROR;
|
|
$error->fhcCode = $code;
|
|
if (!is_null($code)) $error->msg = lang($msg_indx_prefix . $code);
|
|
$error->retval = $retval;
|
|
|
|
return $error;
|
|
}
|
|
|
|
/**
|
|
* Checks if the result represents a success
|
|
*/
|
|
function isSuccess($result)
|
|
{
|
|
if (is_object($result) && isset($result->error) && $result->error == EXIT_SUCCESS)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks if the result represents a success and also if it contains data from DB
|
|
*/
|
|
function hasData($result)
|
|
{
|
|
if (isSuccess($result) && isset($result->retval) &&
|
|
is_array($result->retval) && count($result->retval) > 0)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Checks if the result represents an error
|
|
* Wrapper function of isSuccess, more readable code
|
|
*/
|
|
function isError($result)
|
|
{
|
|
return !isSuccess($result);
|
|
} |