cache_example_page_form |
modules/examples/cache_example/cache_example.module |
Main page for cache_example. |
cache_example_form_expire_files |
modules/examples/cache_example/cache_example.module |
Submit handler that explicitly clears cache_example_files_count from cache. |
cache_example_form_create_expiring_item |
modules/examples/cache_example/cache_example.module |
Submit handler to create a new cache item with specified expiration. |
cache_example_form_cache_clearing |
modules/examples/cache_example/cache_example.module |
Submit handler to demonstrate the various methods for clearing cache. |
CacheExampleTestCase::setUp |
modules/examples/cache_example/tests/cache_example.test |
Enable module. |
CacheExampleTestCase::testCacheExampleBasic |
modules/examples/cache_example/tests/cache_example.test |
Functional tests for cache_example. |
contextual_links_example_menu |
modules/examples/contextual_links_example/contextual_links_example.module |
Implements hook_menu(). |
contextual_links_example_object_load |
modules/examples/contextual_links_example/contextual_links_example.module |
Menu loader callback for the object defined by this module. |
contextual_links_example_block_info |
modules/examples/contextual_links_example/contextual_links_example.module |
Implements hook_block_info(). |
contextual_links_example_block_view |
modules/examples/contextual_links_example/contextual_links_example.module |
Implements hook_block_view(). |
contextual_links_overview_page |
modules/examples/contextual_links_example/contextual_links_example.module |
Menu callback; displays a listing of objects defined by this module. |
contextual_links_example_theme |
modules/examples/contextual_links_example/contextual_links_example.module |
Implements hook_theme(). |
template_preprocess_contextual_links_example_object |
modules/examples/contextual_links_example/contextual_links_example.module |
Process variables for contextual-links-example-object.tpl.php. |
contextual_links_example_object_page |
modules/examples/contextual_links_example/contextual_links_example.module |
Menu callback; displays an object defined by this module on its own page. |
contextual_links_example_object_edit_form |
modules/examples/contextual_links_example/contextual_links_example.module |
Form callback; display the form for editing our module's content. |
contextual_links_example_object_edit_form_submit |
modules/examples/contextual_links_example/contextual_links_example.module |
Submit handler for contextual_links_example_object_edit_form(). |
contextual_links_example_node_action_form |
modules/examples/contextual_links_example/contextual_links_example.module |
Form callback; display the form for performing an example action on a node. |
contextual_links_example_node_action_form_submit |
modules/examples/contextual_links_example/contextual_links_example.module |
Submit handler for contextual_links_example_node_action_form(). |
ContextualLinksExampleTestCase::setUp |
modules/examples/contextual_links_example/tests/contextual_links_example.test |
Enable modules and create user with specific permissions. |
ContextualLinksExampleTestCase::testContextualLinksExample |
modules/examples/contextual_links_example/tests/contextual_links_example.test |
Test the various contextual links that this module defines and displays. |
cron_example_install |
modules/examples/cron_example/cron_example.install |
Implements hook_install() |
cron_example_config_info |
modules/examples/cron_example/cron_example.module |
Implements hook_config_info(). |
cron_example_menu |
modules/examples/cron_example/cron_example.module |
Implements hook_menu(). |
cron_example_form |
modules/examples/cron_example/cron_example.module |
The form to provide a link to cron.php. |
cron_example_form_cron_run_submit |
modules/examples/cron_example/cron_example.module |
Allow user to directly execute cron, optionally forcing it. |
cron_example_add_jobs_to_queue |
modules/examples/cron_example/cron_example.module |
Submit function used to add the items to the queue. |
cron_example_cron |
modules/examples/cron_example/cron_example.module |
Implements hook_cron(). |
cron_example_cron_queue_info |
modules/examples/cron_example/cron_example.module |
Implements hook_cron_queue_info(). |
cron_example_queue_1_worker |
modules/examples/cron_example/cron_example.module |
Simple worker for our queues. |
cron_example_queue_2_worker |
modules/examples/cron_example/cron_example.module |
Simple worker for our queues. |
cron_example_queue_report_work |
modules/examples/cron_example/cron_example.module |
Simple reporter for the workers. |
cron_example_date_iso8601 |
modules/examples/cron_example/cron_example.module |
|
CronExampleTestCase::setUp |
modules/examples/cron_example/tests/cron_example.test |
Enable modules and create user with specific permissions. |
CronExampleTestCase::testCronExampleBasic |
modules/examples/cron_example/tests/cron_example.test |
Test running cron through the user interface. |
database_example_install |
modules/examples/database_example/database_example.install |
Implements hook_install(). |
database_example_schema |
modules/examples/database_example/database_example.install |
Implements hook_schema(). |
database_example_entry_update |
modules/examples/database_example/database_example.module |
Updates an entry in the database. |
database_example_entry_delete |
modules/examples/database_example/database_example.module |
Deletes an entry from the database. |
database_example_entry_load |
modules/examples/database_example/database_example.module |
Reads from the database using a filter array. |
database_example_advanced_list |
modules/examples/database_example/database_example.module |
Renders a filtered list of entries in the database. |
database_example_menu |
modules/examples/database_example/database_example.module |
Implements hook_menu(). |
database_example_list |
modules/examples/database_example/database_example.module |
Renders a list of entries in the database. |
database_example_form_add |
modules/examples/database_example/database_example.module |
Prepares a simple form to add an entry, with all the interesting fields. |
database_example_form_add_submit |
modules/examples/database_example/database_example.module |
Submit handler for 'add entry' form. |
database_example_form_update |
modules/examples/database_example/database_example.module |
Sample UI to update a record. |
database_example_form_update_callback |
modules/examples/database_example/database_example.module |
AJAX callback handler for the pid select. |
database_example_form_update_submit |
modules/examples/database_example/database_example.module |
Submit handler for the 'update entry' form. |
database_example_entry_insert |
modules/examples/database_example/database_example.module |
Saves an entry in the database using db_insert(). |
DatabaseExampleUnitTestCase::setUp |
modules/examples/database_example/tests/database_example.test |
Sets up a Backdrop site for running functional and integration tests. |
DatabaseExampleUnitTestCase::testInstall |
modules/examples/database_example/tests/database_example.test |
Tests the default module installation, two entries in the database table. |