Alphabetically.php
365 Bytes
<?php
namespace ACP\Helper\Select\Group;
use AC;
class Alphabetically extends AC\Helper\Select\Group {
/**
* @param $entity
* @param AC\Helper\Select\Option $option
*
* @return string
*/
public function get_label( $entity, AC\Helper\Select\Option $option ) {
return strtoupper( substr( $option->get_label(), 0, 1 ) );
}
}