I am looking to switch my website to Drupal and was looking for information. My site is currently using Zikula (the most recent version) and I would like to be able to migrate all of the content (over 38,000 articles and other pages) to Drupal. What would be involved in migrating from Zikula to Drupal and can I do it myself. I have a pretty good grasp of PHP, CSS, HTML, SQL, and other technologies involved and I like to think that I'd be able to handle it.
Any suggestions would be appreciated.
Thanks,
Hello,
I want to create a dynamic block and a dynamic page. But, as drupal cache pages and blocks, I haven't the correct content.
Please help me to resolve this problem.
//Block
class BlockExampleSimpleBlock extends BlockBase {
public function build() {
$date = date("Y-m-d h:i:s");
return array(
'#markup' => "Date : $date",
);
}
}
Hello, I've been making a theme for Drupal 8, but I can't seem to find a way to reference images in my Twig files, at least not in a way that satisfies me.
I've found that this: {{ url('<front>') }}
gives me this: https://localhost/drupal/en
or https://localhost/drupal/es
Hi!
I am using Drupal 8!
Please, give me example for REST-module how to POST two or more articles at once?
Something like this:
{
"_links":{
"type":{
"href":"http://drupal8/rest/type/node/article"
}
},
"title":[{"value":"Title 1"} ],
"title":[{"value":"Title 2"} ],
}
Result: Status Code: 400 Bad Request "Syntax error"
It is even possible for a single request to add more than one article?
Thanks!
I've never used Drupal, but am interested if it will be good for my idea. I want to make a site where I can upload a bunch of videos up to my site. The main catch is my employees will upload the videos, but I don't want them to have access to the admin controls. So does Drupal offer a way to have have these separate logins from the admin login?