Click here to Skip to main content
15,891,762 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am new to Drupal web development. I have already used Wordpress platform by building a custom plugin to write custom php functions, and calling the function from a custom page was easy.



How can I achieve similar with Drupal 8?
Do I need to create a custom module for writing the custom php functions?
How do I call a function from a custom page?

Please help.

What I have tried:

example:

PHP
<?php
function givenumber(){
return 50;
}
?>;


Which I call by using:

PHP
<?php  echo givenumber(); ?>
Posted
Updated 7-Apr-20 5:02am

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900