What is the value of the '#programmed' attribute of a form array in drupal?

What is the value of the '#programmed' attribute of a form array in drupal? I did not find documentation for drupal.org in it

+3
source share
1 answer

Drupal allows you to submit forms programmatically, which can be very useful for creating comments / nodes, etc. from the user module. '#programmed' is set to true when a form is submitted by a function using drupal_execute. see here: http://api.drupal.org/api/function/drupal_execute/6

+3
source

Source: https://habr.com/ru/post/1768281/


All Articles