92 lines
1.9 KiB
PHP
92 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Model Helper Functions
|
|
*
|
|
* @package WP_Ultimo\Functions
|
|
* @since 2.0.0
|
|
*/
|
|
|
|
// Exit if accessed directly
|
|
defined('ABSPATH') || exit;
|
|
|
|
/**
|
|
* Cast a list of models to a list of arrays containing the model properties.
|
|
*
|
|
* @since 2.0.0
|
|
*
|
|
* @param \WP_Ultimo\Models\Base_Model $model The model to cast to array.
|
|
* @return array
|
|
*/
|
|
function wu_cast_model_to_array($model) {
|
|
|
|
if (is_a($model, '\\WP_Ultimo\\Models\\Base_Model')) {
|
|
$model = $model->to_array();
|
|
}
|
|
|
|
return $model;
|
|
}
|
|
|
|
/**
|
|
* Converts a list of Model objects to a list of ID => $label_field
|
|
*
|
|
* @since 2.0.0
|
|
*
|
|
* @param array $models The list of models to convert.
|
|
* @param string $label_field The name of the field to use.
|
|
* @return array
|
|
*/
|
|
function wu_models_to_options($models, $label_field = 'name') {
|
|
|
|
$options_list = array();
|
|
|
|
foreach ($models as $model) {
|
|
$options_list[ $model->get_id() ] = call_user_func(array($model, "get_{$label_field}"));
|
|
}
|
|
|
|
return $options_list;
|
|
}
|
|
|
|
/**
|
|
* Get the schema of a particular model.
|
|
*
|
|
* @since 2.0.11
|
|
*
|
|
* @param string $class_name The fully qualified model name.
|
|
* @return array
|
|
*/
|
|
function wu_model_get_schema($class_name) {
|
|
|
|
$schema = array();
|
|
|
|
if (method_exists($class_name, 'get_schema')) {
|
|
$schema = $class_name::get_schema();
|
|
}
|
|
|
|
return $schema;
|
|
}
|
|
|
|
/**
|
|
* Returns a list of required fields form a model schema.
|
|
*
|
|
* @since 2.0.11
|
|
*
|
|
* @param string $class_name The fully qualified model name.
|
|
* @return array
|
|
*/
|
|
function wu_model_get_required_fields($class_name) {
|
|
|
|
$required_fields = array();
|
|
|
|
if (method_exists($class_name, 'validation_rules')) {
|
|
$validation_rules = (new $class_name())->validation_rules();
|
|
|
|
foreach ($validation_rules as $field => $validation_rule) {
|
|
if (strpos((string) $validation_rule, 'required|') !== false || $validation_rule === 'required') {
|
|
$required_fields[] = $field;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $required_fields;
|
|
}
|