view modules/contrib/views_slideshow/src/FormatAddonsName.php @ 11:bfffd8d7479a

Move drupal/core from "replace" to "require" section, to ensure Composer updates it
author Chris Cannam
date Fri, 23 Feb 2018 15:51:18 +0000
parents c69a71b4f40f
children
line wrap: on
line source
<?php

namespace Drupal\views_slideshow;

/**
 * Provides a class to manipulate addons names.
 */
class FormatAddonsName implements FormatAddonsNameInterface {

  /**
   * Format callback to move from underscore separated words to camelCase.
   */
  public function format($subject) {
    return preg_replace_callback('/_(.?)/', function ($matches) {
      if (isset($matches[1])) {
        return strtoupper($matches[1]);
      }
    }, $subject);
  }

}