php Crear令牌个性。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Crear令牌个性。相关的知识,希望对你有一定的参考价值。

/**
 * Implements hook_token_info().
 */
function module_name_token_info() {
  $info = array();
  // Define a new token type.
  $info['types']['my_custom_tokens'] = array(
    'name' => t('My custom tokens'),
    'description' => t('A token type for my custom tokens.'),
  );
  // Define any new tokens.
  $info['tokens']['my_custom_tokens']['my_cool_token'] = array(
    'name' => t('My cool token'),
    'description' => t('A token I use to show that I am cool.'),
  );
  return $info;
}

/**
 * Implements hook_tokens().
 */
function module_name_tokens($type, $tokens, array $data = array(), array $options = array()) {
  $replacements = array();

  if ($type == 'my_custom_tokens') {
    // Loop through the available tokens.
    foreach ($tokens as $name => $original) {
      // Find our custom tokens by name.
      switch ($name) {
        case 'my_cool_token':
          // Work out the value of our token.
          $value = 'Whatever we want the token to be';
          // Give our token it's value!
          $replacements[$original] = $value;
          break;
      }
    }
  }

  return $replacements;
}

以上是关于php Crear令牌个性。的主要内容,如果未能解决你的问题,请参考以下文章

PHP crear slugs para titulos

php CREAR-店 - storeviews设置 - 贝宝andothers

php Crear un usuario administrador desde functions.php

PHP Crear una lista de carpetas con PHP

PHP Crear un sistema de FTP con PHP

php Crear Custom Post Type CPT