Я пытаюсь создать ссылку на клон узла в представлении,
Я установил модуль node clode
и добавил поле просмотра, но тд пуст (т. Е. Отображение не отображается)
При трассировке с помощью отладчика я получил следующий код:
function clone_is_permitted($type) {
$omitted = variable_get('clone_omitted', array());
return empty($omitted[$type]);
}
, который вызывается со значением req_positions
(это тип содержимого)
$omitted = {array} [23]
simplenews = "simplenews"
advertise = "advertise"
icons = "icons"
req_positions = "req_positions"
message = "message"
volunteer = "volunteer"
webform = "webform"
form_jobs = "form_jobs"
article = "article"
info_to_event = "info_to_event"
location = "location"
recipe = "recipe"
recommended_books = "recommended_books"
newsletter = "newsletter"
simple_page = "simple_page"
post = "post"
prptocol = "prptocol"
link = "link"
faq = "faq"
content_presentation = "content_presentation"
donation = "donation"
event = 0
podcast = 0
Я хотел бы удалить req_positions из clone_omited.
Как правильно поступить с этим?