You are here

Utility.php in Commerce Migrate 3.1.x

Same filename and directory in other branches
  1. 8.2 src/Utility.php
  2. 3.0.x src/Utility.php

File

src/Utility.php
View source
<?php

namespace Drupal\commerce_migrate;


/**
 * Provides utility methods for Commerce Migrate.
 *
 * @package Drupal\commerce_migrate
 */
class Utility {

  /**
   * Determine if a class is in a list of class names.
   *
   * @param object|string $className
   *   Class name of plugin.
   * @param array $classes
   *   List of classes to compare.
   * @param bool $allowString
   *   If set to FALSE, string class name as object is not allowed.
   *   This also prevents calling autoloader if the class doesn't exist.
   *
   * @return bool
   *   TRUE if it is a class in the list or else FALSE.
   */
  public static function classInArray($className, array $classes, $allowString = TRUE) {
    foreach ($classes as $class) {
      if (is_a($className, $class, $allowString)) {
        return TRUE;
      }
    }
    return FALSE;
  }

}

Classes

Namesort descending Description
Utility Provides utility methods for Commerce Migrate.