By admin, 25 November, 2020 Creare path alias nella sintassi Twig con node/id {{ path('entity.node.canonical', {'node': node.id}) }} Tags Path Alias Node
By admin, 21 February, 2019 Cambiare titolo in Node Edit content type Cercare o inserire la funzione _form_alter nel template.php ** * Implementation of hook_form_alter() */ function [THME_NAME]_form_alter(&$form, &$form_state, $form_id) { if ('id_card_node_form' == $form_id) { // Change title of Edit add page drupal_set_title(t('Add content XXXX')); } return $form; } Tags Title Edit Node
By admin, 25 October, 2016 Come modificare il template di edit/add di un nodo Inserire il seguente codice nel file template.phpfunction [THEME_NAME]_theme() { return array( 'NODETYPE_node_form' => array( 'arguments' => array( 'form' => NULL, ), 'template' => 'tpl/NODETYPE-node-form', // set the path here if not in root theme directory 'render element' => 'form', ), ); } creare il file NODETYPE-node.form.tpl.php ed inserire la seguente riga Tags Template Node Edit