| mysite_activate | mysite.module | Allows the admin to activate a type plugin |
| mysite_add_link | mysite.module | Format a link to add content to a MySite page. |
| mysite_add_page | mysite.module | Adds a new page to the user collection and takes them to the settings form for that page. |
| mysite_ajax_call | mysite.js | The ajax callback function to save changes |
| mysite_ajax_sort | mysite.module | Process a drag-and-drop sort from jQuery |
| mysite_autocomplete | mysite.module | Allows registration of autocomplete functions through the include files.
Since AJAX autocomplete requires a menu callback, and the include files
do not have menu functions, we filter all AJAX requests through a single function. |
| mysite_block | mysite.module | Implementation of hook_block(). Calls mysite_type_hook_block(). |
| mysite_block_handler | mysite.module | Data handling for block placement. This function is part of the API. |
| mysite_check | mysite.module | Check to see if a MySite type is already in the user's settings |
| mysite_check_settings | mysite.module | Display a message to the site administrator if the content type is inactive. |
| mysite_configure | mysite.module | Menu callback; presents general configuration options. |
| mysite_configure_form | mysite.module | FormsAPI for mysite_configure(). |
| mysite_confirm_delete_form | mysite.module | FormsAPI to confirm deletion of an item |
| mysite_confirm_delete_form_submit | mysite.module | Form submit for mysite_confirm_delete_form() |
| mysite_content | mysite.module | Page for adding content to a MySite page. |
| mysite_content_add | mysite.module | Menu callback to add a content item |
| mysite_content_form | mysite.module | Form for mysite_content() |
| mysite_content_menu | mysite.module | Create a list of submenu items for the Add / Delete Content page. |
| mysite_content_promote | mysite.module | Menu callback to promote or demote an item |
| mysite_content_remove | mysite.module | Menu callback to delete a content item. |
| mysite_content_settings | mysite.module | Generates a user settings page for individual mysite content items. |
| mysite_content_settings_form | mysite.module | FormsAPI for mysite_content_settings() |
| mysite_content_settings_form_submit | mysite.module | Form submit for mysite_content_settings() |
| mysite_content_settings_form_validate | mysite.module | Form validation for mysite_content_settings() |
| mysite_create_account | mysite.module | Create a MySite record for a new user without submitting a form. |
| mysite_create_page | mysite.module | Creates an entry in {mysite_page} for the current user. |
| mysite_cron | mysite.module | Cron hook for cleaning out bad data
We use this routine to remove MySite references
to deleted content containers. |
| mysite_delete_form | mysite.module | FormsAPI for deleting a user's entire collection. |
| mysite_delete_form_submit | mysite.module | FormsAPI for mysite_delete_form() |
| mysite_delete_item | mysite.module | Delete an item from a form call or a url |
| mysite_demote_link | mysite.module | Format a link to remove content from a MySite page. |
| mysite_display | mysite.module | Display a MySite content element outside of the MySite page |
| mysite_domainwarnings | mysite.module | Implements hook_domainwarnings |
| mysite_edit | mysite.module | Edit a MySite page using a multi-stage form. |
| mysite_edit_form | mysite.module | Form function for mysite_edit(). |
| mysite_edit_form_submit | mysite.module | Form submit for mysite_edit_form().
Implementation of the Forms API. |
| mysite_edit_menu | mysite.module | Create a list of submenu items for the user's Settings page. |
| mysite_enable | mysite.module | Installer function that sets MySite pages to show on all domains. |
| mysite_feed_element_data | plugins/ types/ feed.inc | Callback function used by the XML parser. |
| mysite_feed_element_end | plugins/ types/ feed.inc | Callback function used by the XML parser. |
| mysite_feed_element_start | plugins/ types/ feed.inc | Callback function used by the XML parser. |
| mysite_find_empty_page | mysite.module | |
| mysite_get | mysite.module | Get the data for a user MySite page from the {mysite} table. |
| mysite_get_content_element | mysite.module | Given values, generate a table that behaves like a form so that users my add content to their MySite page. |
| mysite_get_custom | mysite.module | Get the data for a custom content type from the {mysite_content} table. |
| mysite_get_icon | mysite.module | Lookup icons for display to the end user. This function requires that the MySite Icons
module is enabled. |
| mysite_get_includes | mysite.module | Return the valid include files for a given include type. This function is used to
check which files to load when mysite_load_includes() is called. It checks to see
that the include files are actually located inside the appropriate... |
| mysite_get_layout | mysite.module | Get the data associated with a layout file |
| mysite_get_mask | mysite.module | Get file extension masks for each type. |
| mysite_get_myid | mysite.module | Retrieve or create a MySite id for string-based keys.
This function is used to create entries in the {mysite_content} table
which is designed to handle non-numeric keys. This lets us keep all
the keys in the {mysite_data} table as integers. |