我正在尝试保存这样的自定义 url 路径:“/PARENT_TERM/TERM/NODE_NAME”
感谢 Pathauto,我设法掌握了构建 url 字符串所需的信息,但我似乎无法保存我的 url。我也不确定是否最好将此信息保存在 URL 路径设置或 URL 实体中。
我不使用 Pathauto 制作 url 的原因是,当我为我的节点制作模式时,它没有为父项提供任何标记。
到目前为止,这是我的代码:
function HOOK_node_insert($entity) {
_HOOK_node_url($entity, 'insert');
}
function HOOK_node_update($entity) {
_HOOK_node_url($entity, 'update');
}
function _HOOK_node_url($entity, $op){
if($entity->getType() == 'dvn_products'){ //Content_type
$nid = $entity->id();
$entity_alias = \Drupal::service('path.alias_manager')->getAliasByPath('/node/' . $nid); // Get the pathauto alias
$term_id = $entity->field_dvn_product_type_ref->target_id;
$term_object = \Drupal\taxonomy\Entity\Term::load($term_id);
$term_name = $term_object->get('name')->value;
$term_alias = \Drupal::service('path.alias_manager')->getAliasByPath('/taxonomy/term/' . $term_id); // Gets pathauto term alias
$new_url = str_replace("/".strtolower($term_name),$term_alias,$entity_alias); //replaces child term with its url
$entity->path->alias = $new_url; // Saves new url (This is the problem)
}
}
谢谢!