Working …
This value you provided is not a number. Please try again.
This value you provided is not an integer. Please try again.
The value entered is not a valid Vanderbilt Medical Record Number (i.e. 4- to 9-digit number, excluding leading zeros). Please try again.
The value you provided must be within the suggested range
The value you provided is outside the suggested range
This value is admissible, but you may wish to double check it.
The value entered must be a time value in the following format HH:MM within the range 00:00-23:59 (e.g., 04:32 or 23:19).
This field must be a 5 or 9 digit U.S. ZIP Code (like 94043). Please re-enter it now.
This field must be a 10 digit U.S. phone number (like 415 555 1212). Please re-enter it now.
This field must be a valid email address (like joe@user.com). Please re-enter it now.
The value you provided could not be validated because it does not follow the expected format. Please try again.
Required format:
REDCap Logo
Plugins, Hooks, & External Modules
Developer methods for
Plugins, Hooks, & External Modules
Hook functions

REDCap Developer Tools:
Documentation for Plugins, Hooks, & External Modules

REDCap Version 14.9.1
REDCap::getCopyright
(REDCap >= 6.14.0)
REDCap::getCopyright — Returns the REDCap copyright text ("REDCap X.X.X - © 20XX Vanderbilt University")
Description
string REDCap::getCopyright ( void )
Returns the REDCap copyright text to be displayed on all pages. This is recommended to be used if a hook is utilized to alter an existing REDCap page so much that the normal page footer that contains the REDCap copyright notice is no longer displayed. Thus you may use this method to display the copyright notice on that page but in a different way or in a different location. This is to conform to the REDCap license agreement that stipulates that the REDCap copyright notice should not be removed from any REDCap pages (this excludes plugins).
Return Values
Returns the REDCap copyright text - i.e., "REDCap X.X.X - © 20XX Vanderbilt University".
Examples
Example #1:
This example illustrates how one might want to display the REDCap copyright at the bottom of a page that has been altered by a hook.
print '<div id="my_page_footer">' . REDCap::getCopyright() . '</div>';
REDCap 14.9.1 - © 2024 Vanderbilt University