MaxLengthTrait.php
319 Bytes
<?php
namespace ACA\JetEngine\Field;
trait MaxLengthTrait {
public function get_maxlength() {
return $this->has_maxlength()
? (int) $this->settings['max_length']
: 0;
}
public function has_maxlength() {
return isset( $this->settings['max_length'] ) && is_numeric( $this->settings['max_length'] );
}
}