drupal files details

Upload: amit-singh

Post on 03-Apr-2018

215 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/29/2019 Drupal Files Details

    1/80

    1. What do you understand from the term content management systems?

    Answer: CMS or content management system is a set of procedures in a computerized system

    that facilitates managing voluminous data. It allows storing, editing and publishing of content

    in a collaborative environment.

    2. Where is drupal mostly used?

    Answer: Drupal is a popular CMS that can be used for all types of websites. It can be adopted

    for sites of any size and nature. Hence, we can see examples of drupal deployment for

    multimedia, e-learning modules, community portals, intranet, eccomerce, resource directory,corporate websites, etc.

    3. Why do you think is drupal more popular than other CMS examples?

    Answer: Users can choose their preferred URL for the site. They can customize the URL for

    each node as per their choice. Besides, the drupal system can generate a URL that is user and

    search engine friendly. A popular feature content construction kit (CCK) allows users to

    create new content modules, without any programming knowledge. It is designed for multiple

    user management. It boasts of proficient taxonomy features that allow the user to categorizeand organize information and establish relationships between two elements by using keyword

    rich terms. Such features have given drupal a preference over other CMS.

    4. Define PDO

    Answer: PHP is PHP developed data object. It facilitates fast and consistent access to the

    databases by writing portable codes easily.

    5. Explain the flow of information between the 5 main layers of drupal.

    Answer: Every element of information is called node. At the base of the system is the data

    pool which is the collection of nodes. Next are the modules that are functional plug-ins.

    Modules may be drupal core or a contributed item. Blocks and menus form the next layer ofdrupal. Blocks are output tool. A user can configure blocks to create a display that he wants

    and show only a few pages. In the next layer, user permissions are determined to the type ofusers who would be allowed to work on the database. Template, which is the theme of the

    site, is the last layer. It is made of a combination of XHTML, CSS and PHP.

    6. Define taxonomy

    Answer: Taxonomy refers to the feature of classifying information and organizing data in asystematic manner. It consists of vocabularies which are a collection of terms. A term is one

    individual component listed in the vocabulary which is a sub category of a vocabulary. There

    are two types of vocabularies: controlled and free tagging. Controlled vocabulary disallows

    users from adding data, whereas free tagging allows users to define, add or classify data. A

    hierarchy determines the depth of the sub category of the vocabulary. Lastly, it allows usageof synonyms by linking similar words together. This helps to prevent duplication.

    For example: Vocabulary: Dance Term: Salsa Sub Term: Toronto Salsa Sub Term: Cuban

    Salsa

    7. Tell me about some recent advancements in the field of drupal systems

  • 7/29/2019 Drupal Files Details

    2/80

    Answer: Recently, drupal 7 was launched and it has received positive responses. Drupal 7

    operates with minimum system requirements that have made using drupal lesscomplex. Security systems have been improved tremendously from previous versions. Also, in

    terms of usability, we have seen a vast improvement. It is now possible to edit page elements,add drag-and-drop method for administrative functions, handle more of meta data, set up

    automated task runs, add shortcuts, build queries, etc.

    8. Why should we choose you over other candidates?

    Answer: I have competent knowledge in drupal systems. I am well versed with the techniques

    of compiling, editing and formatting data. I can compile reports and draw statistics. I have

    technical competence in installing, customizing and upgrading the systems. I make sure that Ikeep track of the latest versions that are introduced in drupal systems. Besides, my technical

    skills, analytical bend of mind andleadership qualities will prove useful for the organization.

    Additionally, we have presented here a list of questions that may be asked by the interviewer. Jot

    down answers to it and be ready to face the questions.

    Explain the features and advantages of the drupal search systems

    What are the elements of the menu system? What are its purpose? What is the purpose of database abstraction layer in drupal?

    What are the browser requirements to operate drupal?

    What is the purpose of view? How to use it?

    Describe the steps to handle upgrades

    How caching operates in drupal system?

    What is a theme override?

    What's the difference between a theme override and a template file?

    Where is the place for placing a theme override?

    Where is the place for placing a template file? What are the differences in template

    files on D5 and D6? What are the template files involved in theming an Ubercart invoice?

    Have you worked with 960gs before? If not, have you worked with any kind of grid

    layout framework? Even if you have no experience with this, you should take a quick

    look at both the drupal theme and the 960gs framework and comment how you seeworking with 960gs can help you when developing a drupal theme.

    How would you work with the main images and the additional images on the theme? What would you do and whattemplates file are you planning on changing?

    How would you work on the the theme to selectively display certain fields of the product in a very specific way tomatch a design, something that's not configurable through the content type display administration section?

    How would you display the main image with a normal size and additional images as thumbnails just below themain image, in a grid-like form displaying three per row. Also, what would you do if an image swap effect between

    the thumbnail and the main image is required?

    If we need a block display up to 6 products in a 3 column scheme on top of the content, how would you do this?

    How would you theme the checkout page of an Ubercart e-commerce site?

  • 7/29/2019 Drupal Files Details

    3/80

    1 What is the default execution time set in set_time_limit()?

    Correct

    2. What is the difference between GET and POST method?

    Correct

    3. How do we submit form data without a Sumbit button?

    You answered: Using Javascript

    Incorrect

    Correct answer: Both a and b above

    4. What happens if no file path is given in include() function?

    You answered: Results in a fatal error

    Incorrect

    Correct answer: Include_path is made use of

    5. What does explode() do?

    Correct

    6. How do I find out the number of parameters passed into function?

    Correct

    7. How can we count the number of elements in an array?

    You answered: Using sizeof()

    Incorrect

    Correct answer: Both a and b above

    8. Can we use include (test.php)two times in a PHP page test1.PHP?Correct

    9. In which variable is the users IP address stored?

    Correct

    10. What is the default size of a file set in upload_max_filesize ?

    Correct

    11. Which of the following way below is correct to comment a single line of code in php?

    You answered: //Commented line

    Incorrect

    Correct answer: both and b above

    12. How do we start a php session?

    Correct

    13. Can echo in php accept more than 1 parameter?

    Correct

    14. What is the purpose of $_SESSION[]?

  • 7/29/2019 Drupal Files Details

    4/80

    Correct

    15. Can I have new lines in $subject tag of php's mail function?

    Correct

    16. In mysql_fetch_array() If two or more columns of the result have the same field names, what

    action is taken?You answered: an error is thrown.

    Incorrect

    Correct answer: the last column will take precedence

    17. What is the use of mysql_pconnect()?

    Correct

    18. What is Joomla in PHP?

    Correct

    19. What is the difference between echo and print?

    You answered: Print can take multiple parameters where as echo cannotIncorrect

    Correct answer: Echo can take multiple parameters where as print cannot

    20. ____________ function in PHP Returns a list of response headers sent (or ready to send)

    You answered: header_sent()

    Incorrect

    Correct answer: headers_list()

    21. PHP supports both simple and multi-dimensional arrays

    Correct

    22. What is array_keys() used for?

    Correct

    23. The windows version of PHP does not have built-in support for the calendar extension

    Correct

    24. Which of the following statements is FALSE for PHP Error and Logging?

    You answered: Both a and c below

    Incorrect

    Correct answer: trigger_error() and user_error() are different

    25. Parent constructors are not called __________ if the child class defines a constructorCorrect

    26. What is PHP heredoc used for?

    Correct

    27. A PHP function cannot be overloaded or redefined

    Correct

  • 7/29/2019 Drupal Files Details

    5/80

    28. PHP supports explicit type definition in variable declaration.

    Correct

    29. How do I create PHP arrays in a HTML ?

    Correct

    30. Can I generate DLL files from PHP scripts like i can in Perl ?Correct

    31. How can I run COM object from remote server ?

    You answered: pass the IP of the remote machine as first parameter to the COM constructor.

    Incorrect

    Correct answer: Both a and c above

    32. Can I run several versions of PHP at the same time?

    You answered: No

    Incorrect

    Correct answer: Yes

    33. Which of the following differences are valid between PHP 4 and PHP 5?

    Correct

    34. Which of the following rules below is/are false for exceptions?

    You answered: Both a and b above

    Incorrect

    Correct answer: Exceptions cannot be thrown (or re-thrown) in a catch block within a try block

    35. What is x+ mode in fopen() used for?

    You answered: Write. Opens and clears the contents of file;

    Incorrect

    Correct answer: Read/Write. Creates a new file. Returns FALSE and an error if file already exists

    36. What is the strpos() function used for?

    Correct

    37. Is strstr and strchr aliases?

    You answered: No

    Incorrect

    Correct answer: Yes

    38. Which function is used to Strip whitespace (or other characters) from the beginning and end of astring?

    Correct

    39. echo does not return any value

    Correct

    MYSQL

  • 7/29/2019 Drupal Files Details

    6/80

    1. What is a candidate key?

    Correct

    2. Can I call a trigger directly called from an application?

    Correct

    3. A view is nothing but a ________ table or a stored query

    Correct

    4. How can we get the number of records or rows in a table?

    Correct

    5. An outer join requires each record in the two joined tables to have a matching record.

    Correct

    6. How do I find out all databases starting with test to which I have access t o?

    Correct

    7. Can I define multiple unique constraints on a table?

    Correct

    8. When do we use a HAVING clause?

    You answered: both b and c above

    Incorrect

    Correct answer: To limit the output of a query using an aggregate function only

    9. USE keyword is used to select a ___________

    Correct

    10. Enum values are stored accodring to their index numbers

    You answered: False

    Incorrect

    Correct answer: True

    11. Which of the following ways below are the correct way to get the current date?

    You answered: SELECT CURDATE();

    Incorrect

    Correct answer: All of above

    12. Which of the following file extension is a valid MyISAM file extension?

    Correct

    13. User() fucntion returns the current users user name and ___________

    You answered: database name associated with the user

    Incorrect

    Correct answer: host name

    14.i-am-a-dummy flag is used Makes the MySQL engine refuse UPDATE and which other command?

    Correct

    15. Which is the default order of sort in ORDER BY clause?

    You answered: Descending

    Incorrect

  • 7/29/2019 Drupal Files Details

    7/80

    Correct answer: Ascending

    16. Can DISTINCT command be used for more than one column?

    Correct

    17. On executing DELETE command, if you get an error "foreign key constraint"- what does it imply?

    Correct

    18. BLOB data type can have default column value.

    Correct

    19. How much storage space does DATETIME require?

    You answered: 4 bytes

    Incorrect

    Correct answer: 8 bytes

    20. If an ENUM column is declared NOT NULL, its default value is the first element of the list of allowed

    values.

    Correct

    JAVASCRIPT

    1. What language defines the behavior of a web page?

    Correct

    2. Which of the following is the tainted property of a window object in Java Script?

    Correct

    3. How to append a value to an array of Java Script?

    You answered: arr[arr.length+1] = new Arrays()

    Incorrect

    Correct answer: arr[arr.length] = value

    4. Why so Java and Java Script have similar name?

    You answered: None of the above

    Incorrect

    Correct answer: The syntax of Java is loosely based on Java syntax

    5. Which machine actually executes the Java Script?

    Correct

    6. Is it possible to declare a variable in Java Script along its type?

    Correct

    7. Which of the following are capable of Java Script functions?

    You answered: all of the above

    Incorrect

    Correct answer: Accepting parameters

  • 7/29/2019 Drupal Files Details

    8/80

    8. How does Java Script store dates in objects of Date type?

    You answered: The number of days since January 1st, 1900

    Incorrect

    Correct answer: The number of milliseconds since January 1st, 1970

    9. Which attribute is used to hold the Java Script version?

    You answered: VERSION

    Incorrect

    Correct answer: LANGUAGE

    10. Which of the following is correct to write Hello World on the web page?

    Correct

    11. Which of the following syntax is correct to refer an external script called formValidation.js?

    Correct

    12. What type of image maps could be used with Java Script?

    Correct

    13. Which of the following is the correct way for writing Java Script array?

    Correct

    14. What is the purpose of tag in Java Script?

    You answered: Prevents scripts on the page from executing.

    Incorrect

    Correct answer: Enclose text to be displayed by non-JavaScript browsers

    15. Java Script entities start with ____________ and end with ______________

    Correct

    16. Which of the following is a server-side Java Script object?You answered: FileUpload

    Incorrect

    Correct answer: File

    17. Which of the following is a client-side Java Script object?

    You answered: File

    Incorrect

    Correct answer: FileUpload

    18. Which of the following method is used to evaluate a string of Java Script code in the context of the specified

    object?

    Correct

    19. What is the event that fires when the form elements : . loses the focus?

    Correct

    20. Which of the following is used to capture all click events in a window?

    Correct

    21. Javascript is an object oriented language?

  • 7/29/2019 Drupal Files Details

    9/80

    Correct

    22. C-style block-level scoping is not supported in Java script

    Correct

    23. To insert a JavaScript into an HTML page, which tag is used?

    Correct

    24. If we dont want the script to write page content, under which HTML tag should the JS tag be placeD?

    You answered: < head>

    Incorrect

    Correct answer: < body>

    25. Which of the following statements are true for Java script?

    Correct

    26. Which of the following statements are false for Java script?

    You answered: Both b and c above

    Incorrect

    Correct answer: Variable names are not case sensitive

    27. Which of the below is used in Java script to insert special characters?

    You answered: %

    Incorrect

    Correct answer: \

    28. JavaScript ignores extra spaces

    Correct

    29. Which of the ways below is incorrect of instantiating a date?

    You answered: new Date(dateString)

    Incorrect

    Correct answer: new Date(seconds)

    30. Which of the following statements are false for Java script?

    You answered: Both b and c above

    Incorrect

    Correct answer: JavaScript cannot be used to create cookies

    31. What is negative infinity in Java script?

    You answered: Any of below

    Incorrect

    Correct answer: number in JavaScript, derived by dividing negative number by zero

    32. ___________ JavaScript is also called client-side JavaScript.

    Correct

    33. Java script can be used for Storing the form's contents to a database file on the server

    You answered: True

    Incorrect

  • 7/29/2019 Drupal Files Details

    10/80

    Correct answer: False

    34. Which of the following is not a valid JavaScript variable name?

    Correct

    35. Which is the correct way to write a JavaScript array?

    Correct

    36. File is server-side JavaScript object

    You answered: True

    Incorrect

    Correct answer: False

    37. What java wrapper type is created when a JavaScript object is sent to Java?

    Correct

    38. Which attribute needs to be changed to make elements invisible?

    You answered: invisible

    Incorrect

    Correct answer: visibilty

    39. Java Script supports all boolean operators

    You answered: True

    Incorrect

    Correct answer: False

    40. What is the alternate name for Java script?

    Correct

    Name Description

    authorize.php

    Administrative script for running authorized file

    operations.

    CHANGELOG.txt

    Drupal 7.17, xxxx-xx-xx (development version) ---------

    -------------- - Fixed the theme settings form to properly

    clean up submitted values in $form_state['values'] when

    the form is submitted (data structure change). -

    Updated various

    http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/CHANGELOG.txt/7http://api.drupal.org/api/drupal/CHANGELOG.txt/7http://api.drupal.org/api/drupal/CHANGELOG.txt/7http://api.drupal.org/api/drupal/authorize.php/7
  • 7/29/2019 Drupal Files Details

    11/80

    Name Description

    COPYRIGHT.txt

    All Drupal code is Copyright 2001 - 2012 by the original

    authors. This program is free software; you can

    redistribute it and/or modify it under the terms of the

    GNU General Public License as published by the Free

    Software Foundation; either version 2

    cron.php

    Handles incoming requests to fire off regularly-

    scheduled tasks (cron jobs).

    developer/example.profile

    developer/globals.php These are the global variables that Drupal uses.

    developer/index.php

    developer/topics/forms_api_reference.html Form API Reference

    includes/actions.inc This is the actions engine for executing stored actions.

    includes/ajax.inc Functions for use with Drupal's Ajax framework.

    includes/archiver.inc Shared classes and interfaces for the archiver system.

    includes/authorize.inc

    Helper functions and form handlers used for

    theauthorize.phpscript.

    includes/batch.inc

    Batch processing API for processes to run in multiple

    HTTP requests.

    includes/batch.queue.inc Queue handlers used by the Batch API.

    includes/bootstrap.inc

    Functions that need to be loaded on every Drupal

    request.

    includes/cache-install.inc

    Provides a stub cache implementation to be used during

    installation.

    includes/cache.inc Functions and interfaces for cache handling.

    includes/common.inc

    Common functions that many Drupal modules will need

    to reference.

    includes/database/database.inc Core systems for the database layer.

    includes/database/log.inc Logging classes for the database layer.

    http://api.drupal.org/api/drupal/COPYRIGHT.txt/7http://api.drupal.org/api/drupal/COPYRIGHT.txt/7http://api.drupal.org/api/drupal/cron.php/7http://api.drupal.org/api/drupal/cron.php/7http://api.drupal.org/api/drupal/developer%21example.profile/7http://api.drupal.org/api/drupal/developer%21globals.php/7http://api.drupal.org/api/drupal/developer%21globals.php/7http://api.drupal.org/api/drupal/developer%21index.php/7http://api.drupal.org/api/drupal/developer%21topics%21forms_api_reference.html/7http://api.drupal.org/api/drupal/developer%21topics%21forms_api_reference.html/7http://api.drupal.org/api/drupal/includes%21actions.inc/7http://api.drupal.org/api/drupal/includes%21ajax.inc/7http://api.drupal.org/api/drupal/includes%21ajax.inc/7http://api.drupal.org/api/drupal/includes%21archiver.inc/7http://api.drupal.org/api/drupal/includes%21archiver.inc/7http://api.drupal.org/api/drupal/includes%21authorize.inc/7http://api.drupal.org/api/drupal/includes%21authorize.inc/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/includes%21batch.inc/7http://api.drupal.org/api/drupal/includes%21batch.inc/7http://api.drupal.org/api/drupal/includes%21batch.queue.inc/7http://api.drupal.org/api/drupal/includes%21batch.queue.inc/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/7http://api.drupal.org/api/drupal/includes%21cache-install.inc/7http://api.drupal.org/api/drupal/includes%21cache.inc/7http://api.drupal.org/api/drupal/includes%21cache.inc/7http://api.drupal.org/api/drupal/includes%21common.inc/7http://api.drupal.org/api/drupal/includes%21common.inc/7http://api.drupal.org/api/drupal/includes%21database%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21log.inc/7http://api.drupal.org/api/drupal/includes%21database%21log.inc/7http://api.drupal.org/api/drupal/includes%21database%21database.inc/7http://api.drupal.org/api/drupal/includes%21common.inc/7http://api.drupal.org/api/drupal/includes%21cache.inc/7http://api.drupal.org/api/drupal/includes%21cache-install.inc/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/7http://api.drupal.org/api/drupal/includes%21batch.queue.inc/7http://api.drupal.org/api/drupal/includes%21batch.inc/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/includes%21authorize.inc/7http://api.drupal.org/api/drupal/includes%21archiver.inc/7http://api.drupal.org/api/drupal/includes%21ajax.inc/7http://api.drupal.org/api/drupal/includes%21actions.inc/7http://api.drupal.org/api/drupal/developer%21topics%21forms_api_reference.html/7http://api.drupal.org/api/drupal/developer%21index.php/7http://api.drupal.org/api/drupal/developer%21globals.php/7http://api.drupal.org/api/drupal/developer%21example.profile/7http://api.drupal.org/api/drupal/cron.php/7http://api.drupal.org/api/drupal/COPYRIGHT.txt/7
  • 7/29/2019 Drupal Files Details

    12/80

    Name Description

    includes/database/mysql/database.inc Database interface code for MySQL database servers.

    includes/database/mysql/install.inc Installation code for MySQL embedded database engine.

    includes/database/mysql/query.inc Query code for MySQL embedded database engine.

    includes/database/mysql/schema.inc Database schema code for MySQL database servers.

    includes/database/pgsql/database.inc

    Database interface code for PostgreSQL database

    servers.

    includes/database/pgsql/install.inc

    Install functions for PostgreSQL embedded database

    engine.

    includes/database/pgsql/query.inc Query code for PostgreSQL embedded database engine.

    includes/database/pgsql/schema.inc

    Database schema code for PostgreSQL database

    servers.

    includes/database/pgsql/select.inc Select builder for PostgreSQL database engine.

    includes/database/prefetch.inc

    Database interface code for engines that need complete

    control over their result sets. For example, SQLite will

    prefix some column names by the name of the table.

    We post-process the data, by renaming the column

    names using the same convention as

    includes/database/query.inc Non-specific Database query code. Used by all engines.

    includes/database/schema.inc Generic Database schema code.

    includes/database/select.inc

    includes/database/sqlite/database.inc

    Database interface code for SQLite embedded database

    engine.

    includes/database/sqlite/install.inc SQLite specific install functions

    includes/database/sqlite/query.inc

    Query code for SQLite embedded database engine.

    includes/database/sqlite/schema.inc Database schema code for SQLite databases.

    includes/database/sqlite/select.inc Select builder for SQLite embedded database engine.

    includes/date.inc Initializes the list of date formats and their locales.

    includes/entity.inc

    http://api.drupal.org/api/drupal/includes%21database%21mysql%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21prefetch.inc/7http://api.drupal.org/api/drupal/includes%21database%21prefetch.inc/7http://api.drupal.org/api/drupal/includes%21database%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21select.inc/7http://api.drupal.org/api/drupal/includes%21date.inc/7http://api.drupal.org/api/drupal/includes%21entity.inc/7http://api.drupal.org/api/drupal/includes%21entity.inc/7http://api.drupal.org/api/drupal/includes%21date.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21sqlite%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21prefetch.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21select.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21pgsql%21database.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21schema.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21query.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21install.inc/7http://api.drupal.org/api/drupal/includes%21database%21mysql%21database.inc/7
  • 7/29/2019 Drupal Files Details

    13/80

    Name Description

    includes/errors.inc Functions for error handling.

    includes/file.inc

    API for handling file uploads and server file

    management.

    includes/file.mimetypes.inc Provides mimetype mappings.

    includes/filetransfer/filetransfer.inc

    includes/filetransfer/ftp.inc

    includes/filetransfer/local.inc

    includes/filetransfer/ssh.inc

    includes/form.inc Functions for form and batch generation and processing.

    includes/graph.inc Directed acyclic graph manipulation.

    includes/image.inc API for manipulating images.

    includes/install.core.inc API functions for installing Drupal.

    includes/install.inc API functions for installing modules and themes.

    includes/iso.inc

    Provides a list of countries and languages based on

    ISO standards.

    includes/json-encode.inc

    Provides a helper to properly encode HTML-safe

    JSON prior to PHP 5.3.0.

    includes/language.inc Multiple language handling functionality.

    includes/locale.inc Administration functions forlocale.module.

    includes/lock.inc

    A database-mediated implementation of a locking

    mechanism.

    includes/mail.inc API functions for processing and sending e-mail.

    includes/menu.inc API for the Drupal menu system.

    includes/module.inc API for loading and interacting with Drupal modules.

    includes/pager.inc

    Functions to aid in presenting database results as a

    set of pages.

    http://api.drupal.org/api/drupal/includes%21errors.inc/7http://api.drupal.org/api/drupal/includes%21file.inc/7http://api.drupal.org/api/drupal/includes%21file.mimetypes.inc/7http://api.drupal.org/api/drupal/includes%21file.mimetypes.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21filetransfer.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21filetransfer.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21ftp.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21ftp.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21local.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21local.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21ssh.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21ssh.inc/7http://api.drupal.org/api/drupal/includes%21form.inc/7http://api.drupal.org/api/drupal/includes%21form.inc/7http://api.drupal.org/api/drupal/includes%21graph.inc/7http://api.drupal.org/api/drupal/includes%21graph.inc/7http://api.drupal.org/api/drupal/includes%21image.inc/7http://api.drupal.org/api/drupal/includes%21install.core.inc/7http://api.drupal.org/api/drupal/includes%21install.core.inc/7http://api.drupal.org/api/drupal/includes%21install.inc/7http://api.drupal.org/api/drupal/includes%21install.inc/7http://api.drupal.org/api/drupal/includes%21iso.inc/7http://api.drupal.org/api/drupal/includes%21json-encode.inc/7http://api.drupal.org/api/drupal/includes%21language.inc/7http://api.drupal.org/api/drupal/includes%21language.inc/7http://api.drupal.org/api/drupal/includes%21locale.inc/7http://api.drupal.org/api/drupal/includes%21locale.inc/7http://api.drupal.org/api/drupal/modules%21locale%21locale.module/7http://api.drupal.org/api/drupal/modules%21locale%21locale.module/7http://api.drupal.org/api/drupal/modules%21locale%21locale.module/7http://api.drupal.org/api/drupal/includes%21lock.inc/7http://api.drupal.org/api/drupal/includes%21lock.inc/7http://api.drupal.org/api/drupal/includes%21mail.inc/7http://api.drupal.org/api/drupal/includes%21menu.inc/7http://api.drupal.org/api/drupal/includes%21menu.inc/7http://api.drupal.org/api/drupal/includes%21module.inc/7http://api.drupal.org/api/drupal/includes%21pager.inc/7http://api.drupal.org/api/drupal/includes%21pager.inc/7http://api.drupal.org/api/drupal/includes%21module.inc/7http://api.drupal.org/api/drupal/includes%21menu.inc/7http://api.drupal.org/api/drupal/includes%21mail.inc/7http://api.drupal.org/api/drupal/includes%21lock.inc/7http://api.drupal.org/api/drupal/modules%21locale%21locale.module/7http://api.drupal.org/api/drupal/includes%21locale.inc/7http://api.drupal.org/api/drupal/includes%21language.inc/7http://api.drupal.org/api/drupal/includes%21json-encode.inc/7http://api.drupal.org/api/drupal/includes%21iso.inc/7http://api.drupal.org/api/drupal/includes%21install.inc/7http://api.drupal.org/api/drupal/includes%21install.core.inc/7http://api.drupal.org/api/drupal/includes%21image.inc/7http://api.drupal.org/api/drupal/includes%21graph.inc/7http://api.drupal.org/api/drupal/includes%21form.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21ssh.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21local.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21ftp.inc/7http://api.drupal.org/api/drupal/includes%21filetransfer%21filetransfer.inc/7http://api.drupal.org/api/drupal/includes%21file.mimetypes.inc/7http://api.drupal.org/api/drupal/includes%21file.inc/7http://api.drupal.org/api/drupal/includes%21errors.inc/7
  • 7/29/2019 Drupal Files Details

    14/80

    includes/password.inc

    Secure password hashing functions for user

    authentication.

    includes/path.inc

    Functions to handle paths in Drupal, including path

    aliasing.

    includes/registry.inc This file contains the code registry parser engine.

    includes/session.inc User session handling functions.

    includes/stream_wrappers.inc Drupal stream wrapper interface.

    includes/tablesort.inc Functions to aid in the creation of sortable tables.

    includes/theme.inc

    The theme system, which controls the output of

    Drupal.

    includes/theme.maintenance.inc Theming for maintenance pages.

    includes/token.inc Drupal placeholder/token replacement system.

    includes/unicode.entities.inc (X)HTML entities, as defined in HTML 4.01.

    includes/unicode.inc

    includes/update.inc Drupal database update API.

    includes/updater.inc

    Classes used for updating various files in the Drupal

    webroot. These classes use a FileTransfer object to

    actually perform the operations. Normally, the

    FileTransfer is provided when the site owner is

    redirected toauthorize.phpas part of a multistep

    includes/utility.inc Miscellaneous functions.

    includes/xmlrpc.inc Drupal XML-RPC library.

    includes/xmlrpcs.inc

    Provides API for defining and handling XML-RPC

    requests.

    index.php

    The PHP page that serves all page requests on a

    Drupal installation.

    INSTALL.mysql.txt

    CREATE THE MySQL DATABASE -----------------------

    --- This step is only necessary if you don't already

    have a database set up (e.g., by your host). In the

    following examples, 'username' is an example MySQL

    http://api.drupal.org/api/drupal/includes%21password.inc/7http://api.drupal.org/api/drupal/includes%21password.inc/7http://api.drupal.org/api/drupal/includes%21path.inc/7http://api.drupal.org/api/drupal/includes%21path.inc/7http://api.drupal.org/api/drupal/includes%21registry.inc/7http://api.drupal.org/api/drupal/includes%21registry.inc/7http://api.drupal.org/api/drupal/includes%21session.inc/7http://api.drupal.org/api/drupal/includes%21session.inc/7http://api.drupal.org/api/drupal/includes%21stream_wrappers.inc/7http://api.drupal.org/api/drupal/includes%21stream_wrappers.inc/7http://api.drupal.org/api/drupal/includes%21tablesort.inc/7http://api.drupal.org/api/drupal/includes%21tablesort.inc/7http://api.drupal.org/api/drupal/includes%21theme.inc/7http://api.drupal.org/api/drupal/includes%21theme.maintenance.inc/7http://api.drupal.org/api/drupal/includes%21theme.maintenance.inc/7http://api.drupal.org/api/drupal/includes%21token.inc/7http://api.drupal.org/api/drupal/includes%21token.inc/7http://api.drupal.org/api/drupal/includes%21unicode.entities.inc/7http://api.drupal.org/api/drupal/includes%21unicode.entities.inc/7http://api.drupal.org/api/drupal/includes%21unicode.inc/7http://api.drupal.org/api/drupal/includes%21unicode.inc/7http://api.drupal.org/api/drupal/includes%21update.inc/7http://api.drupal.org/api/drupal/includes%21updater.inc/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/includes%21utility.inc/7http://api.drupal.org/api/drupal/includes%21utility.inc/7http://api.drupal.org/api/drupal/includes%21xmlrpc.inc/7http://api.drupal.org/api/drupal/includes%21xmlrpc.inc/7http://api.drupal.org/api/drupal/includes%21xmlrpcs.inc/7http://api.drupal.org/api/drupal/includes%21xmlrpcs.inc/7http://api.drupal.org/api/drupal/index.php/7http://api.drupal.org/api/drupal/index.php/7http://api.drupal.org/api/drupal/INSTALL.mysql.txt/7http://api.drupal.org/api/drupal/INSTALL.mysql.txt/7http://api.drupal.org/api/drupal/INSTALL.mysql.txt/7http://api.drupal.org/api/drupal/index.php/7http://api.drupal.org/api/drupal/includes%21xmlrpcs.inc/7http://api.drupal.org/api/drupal/includes%21xmlrpc.inc/7http://api.drupal.org/api/drupal/includes%21utility.inc/7http://api.drupal.org/api/drupal/authorize.php/7http://api.drupal.org/api/drupal/includes%21updater.inc/7http://api.drupal.org/api/drupal/includes%21update.inc/7http://api.drupal.org/api/drupal/includes%21unicode.inc/7http://api.drupal.org/api/drupal/includes%21unicode.entities.inc/7http://api.drupal.org/api/drupal/includes%21token.inc/7http://api.drupal.org/api/drupal/includes%21theme.maintenance.inc/7http://api.drupal.org/api/drupal/includes%21theme.inc/7http://api.drupal.org/api/drupal/includes%21tablesort.inc/7http://api.drupal.org/api/drupal/includes%21stream_wrappers.inc/7http://api.drupal.org/api/drupal/includes%21session.inc/7http://api.drupal.org/api/drupal/includes%21registry.inc/7http://api.drupal.org/api/drupal/includes%21path.inc/7http://api.drupal.org/api/drupal/includes%21password.inc/7
  • 7/29/2019 Drupal Files Details

    15/80

    user which has the CREATE and

    INSTALL.pgsql.txt

    CREATE THE PostgreSQL DATABASE ------------------

    ------------ Note that the database must be created

    with UTF-8 (Unicode) encoding. 1. CREATE

    DATABASE USER This step is only necessary if you

    don't already have a user set up (e.g., by

    install.php Initiates a browser-based installation of Drupal.

    INSTALL.sqlite.txt

    SQLITE REQUIREMENTS ------------------- To use

    SQLite with your Drupal installation, the following

    requirements must be met: Server has PHP 5.2 or

    later with PDO, and the PDO SQLite driver must be

    enabled. SQLITE DATABASE

    INSTALL.txt

    CONTENTS OF THIS FILE --------------------- *

    Requirements and notes * Optional server

    requirements * Installation * Building and

    customizing your site * Multisite configuration * More

    information REQUIREMENTS AND

    LICENSE.txt

    GNU GENERAL PUBLIC LICENSE Version 2, June

    1991 Copyright (C) 1989, 1991 Free Software

    Foundation, Inc., 51 Franklin Street, Fifth Floor,

    Boston, MA 02110-1301 USA Everyone is permitted

    to copy and distribute verbatim copies of this

    MAINTAINERS.txt

    Drupal core is built and maintained by the Drupal

    project community. Everyone is encouraged to

    submit issues and changes (patches) to improve

    Drupal, and to contribute in other ways --

    seehttp://drupal.org/contributeto find out how.

    Branch

    modules/aggregator/aggregator-feed-

    source.tpl.php

    Default theme implementation to present the source

    of the feed.

    modules/aggregator/aggregator-item.tpl.php

    Default theme implementation to format an

    individual feed item for display on the aggregator

    page.

    modules/aggregator/aggregator-summary- Default theme implementation to present a linked

    http://api.drupal.org/api/drupal/INSTALL.pgsql.txt/7http://api.drupal.org/api/drupal/INSTALL.pgsql.txt/7http://api.drupal.org/api/drupal/install.php/7http://api.drupal.org/api/drupal/INSTALL.sqlite.txt/7http://api.drupal.org/api/drupal/INSTALL.txt/7http://api.drupal.org/api/drupal/INSTALL.txt/7http://api.drupal.org/api/drupal/LICENSE.txt/7http://api.drupal.org/api/drupal/LICENSE.txt/7http://api.drupal.org/api/drupal/MAINTAINERS.txt/7http://api.drupal.org/api/drupal/MAINTAINERS.txt/7http://drupal.org/contributehttp://drupal.org/contributehttp://drupal.org/contributehttp://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-feed-source.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-feed-source.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-item.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-item.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-item.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-item.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-feed-source.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-feed-source.tpl.php/7http://drupal.org/contributehttp://api.drupal.org/api/drupal/MAINTAINERS.txt/7http://api.drupal.org/api/drupal/LICENSE.txt/7http://api.drupal.org/api/drupal/INSTALL.txt/7http://api.drupal.org/api/drupal/INSTALL.sqlite.txt/7http://api.drupal.org/api/drupal/install.php/7http://api.drupal.org/api/drupal/INSTALL.pgsql.txt/7
  • 7/29/2019 Drupal Files Details

    16/80

    item.tpl.php feed item for summaries.

    modules/aggregator/aggregator-summary-

    items.tpl.php

    Default theme implementation to present feeds as

    list items.

    modules/aggregator/aggregator-

    wrapper.tpl.php

    Default theme implementation to wrap aggregator

    content.

    modules/aggregator/aggregator.admin.inc Admin page callbacks for the aggregator module.

    modules/aggregator/aggregator.api.php Documentation for aggregator API.

    modules/aggregator/aggregator.fetcher.inc Fetcher functions for the aggregator module.

    modules/aggregator/aggregator.info

    name = Aggregator description = "Aggregates

    syndicated content (RSS, RDF, and Atom feeds)."

    package = Core version =VERSIONcore = 7.x

    files[] =aggregator.testconfigure =

    admin/config/services/aggregator/settings

    stylesheets[all][] =

    modules/aggregator/aggregator.install

    Install, update and uninstall functions for the

    aggregator module.

    modules/aggregator/aggregator.module

    Used to aggregate syndicated content (RSS, RDF,

    and Atom).

    modules/aggregator/aggregator.pages.inc

    User page callbacks for the aggregator module.

    modules/aggregator/aggregator.parser.inc Parser functions for the aggregator module.

    modules/aggregator/aggregator.processor.inc Processor functions for the aggregator module.

    modules/aggregator/aggregator.test Tests foraggregator.module.

    modules/aggregator/tests/aggregator_test.info

    name = "Aggregator module

    tests" description = "Support

    module for aggregator

    related testing." package =

    Testing version

    =VERSIONcore = 7.x hidden

    = TRUE

    modules/aggregator/tests/aggregator_test.module

    http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-item.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-items.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-items.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-wrapper.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-wrapper.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.admin.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.admin.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.api.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.api.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.fetcher.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.fetcher.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.info/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.test/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.test/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.install/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.install/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.pages.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.pages.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.parser.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.parser.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.processor.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.processor.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.test/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.test/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21tests%21aggregator_test.info/7http://api.drupal.org/api/drupal/modules%21aggregator%21tests%21aggregator_test.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21aggregator%21tests%21aggregator_test.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21tests%21aggregator_test.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21tests%21aggregator_test.module/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21aggregator%21tests%21aggregator_test.info/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.test/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.processor.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.parser.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.pages.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.module/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.install/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.info/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.fetcher.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.api.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator.admin.inc/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-wrapper.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-wrapper.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-items.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-items.tpl.php/7http://api.drupal.org/api/drupal/modules%21aggregator%21aggregator-summary-item.tpl.php/7
  • 7/29/2019 Drupal Files Details

    17/80

    modules/block/block-admin-display-form.tpl.php

    Default theme

    implementation to configure

    blocks.

    modules/block/block.admin.inc

    Admin page callbacks for the

    block module.

    modules/block/block.api.php

    Hooks provided by the Block

    module.

    modules/block/block.info

    name = Block description =

    Controls the visual building

    blocks a page is constructed

    with. Blocks are boxes of

    content rendered into an

    area, or region, of a web

    page. package = Core

    version =VERSIONcore =

    7.x files[]

    =block.testconfigure =

    modules/block/block.install

    Install, update and uninstall

    functions for the block

    module.

    modules/block/block.module

    Controls the visual building

    blocks a page is constructed

    with.

    modules/block/block.test Tests forblock.module.

    modules/block/block.tpl.php

    Default theme

    implementation to display a

    block.

    modules/block/tests/block_test.info

    name = Block test

    description = Provides test

    blocks. package = Testing

    version =VERSIONcore =

    7.x hidden = TRUE

    modules/block/tests/block_test.module Provide test blocks.

    modules/block/tests/themes/block_test_theme/block_test_theme.info name = Block test theme

    http://api.drupal.org/api/drupal/modules%21block%21block-admin-display-form.tpl.php/7http://api.drupal.org/api/drupal/modules%21block%21block.admin.inc/7http://api.drupal.org/api/drupal/modules%21block%21block.admin.inc/7http://api.drupal.org/api/drupal/modules%21block%21block.api.php/7http://api.drupal.org/api/drupal/modules%21block%21block.api.php/7http://api.drupal.org/api/drupal/modules%21block%21block.info/7http://api.drupal.org/api/drupal/modules%21block%21block.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21block%21block.test/7http://api.drupal.org/api/drupal/modules%21block%21block.test/7http://api.drupal.org/api/drupal/modules%21block%21block.test/7http://api.drupal.org/api/drupal/modules%21block%21block.install/7http://api.drupal.org/api/drupal/modules%21block%21block.install/7http://api.drupal.org/api/drupal/modules%21block%21block.module/7http://api.drupal.org/api/drupal/modules%21block%21block.module/7http://api.drupal.org/api/drupal/modules%21block%21block.test/7http://api.drupal.org/api/drupal/modules%21block%21block.module/7http://api.drupal.org/api/drupal/modules%21block%21block.module/7http://api.drupal.org/api/drupal/modules%21block%21block.module/7http://api.drupal.org/api/drupal/modules%21block%21block.tpl.php/7http://api.drupal.org/api/drupal/modules%21block%21block.tpl.php/7http://api.drupal.org/api/drupal/modules%21block%21tests%21block_test.info/7http://api.drupal.org/api/drupal/modules%21block%21tests%21block_test.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21block%21tests%21block_test.module/7http://api.drupal.org/api/drupal/modules%21block%21tests%21block_test.module/7http://api.drupal.org/api/drupal/modules%21block%21tests%21themes%21block_test_theme%21block_test_theme.info/7http://api.drupal.org/api/drupal/modules%21block%21tests%21themes%21block_test_theme%21block_test_theme.info/7http://api.drupal.org/api/drupal/modules%21block%21tests%21themes%21block_test_theme%21block_test_theme.info/7http://api.drupal.org/api/drupal/modules%21block%21tests%21block_test.module/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21block%21tests%21block_test.info/7http://api.drupal.org/api/drupal/modules%21block%21block.tpl.php/7http://api.drupal.org/api/drupal/modules%21block%21block.module/7http://api.drupal.org/api/drupal/modules%21block%21block.test/7http://api.drupal.org/api/drupal/modules%21block%21block.module/7http://api.drupal.org/api/drupal/modules%21block%21block.install/7http://api.drupal.org/api/drupal/modules%21block%21block.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21block%21block.info/7http://api.drupal.org/api/drupal/modules%21block%21block.api.php/7http://api.drupal.org/api/drupal/modules%21block%21block.admin.inc/7http://api.drupal.org/api/drupal/modules%21block%21block-admin-display-form.tpl.php/7
  • 7/29/2019 Drupal Files Details

    18/80

    description = Theme for

    testing the block system core

    = 7.x hidden = TRUE

    regions[sidebar_first] = Left

    sidebar regions_hidden[] =

    sidebar_first

    regions[sidebar_second] =

    Right sidebar

    regions_hidden[] =

    modules/block/tests/themes/block_test_theme/page.tpl.php

    Custom theme

    implementation to display a

    single Drupal page without

    sidebars. The sidebars are

    hidden by regions_hidden for

    this theme, so the

    defaultpage.tpl.phpwill not

    work without throwing

    exceptions.

    modules/blog/blog.info

    name = Blog description =

    Enables multi-user blogs.

    package = Core version

    =VERSIONcore = 7.x files[]

    =blog.test

    modules/blog/blog.install

    Install, update and uninstall

    functions for the blog

    module.

    modules/blog/blog.module Enables multi-user blogs.

    modules/blog/blog.pages.inc

    Page callback file for the blog

    module.

    modules/blog/blog.test Tests forblog.module.

    modules/book/book-all-books-block.tpl.php

    Default theme

    implementation for rendering

    book outlines within a block.

    modules/book/book-export-html.tpl.php Default theme

    http://api.drupal.org/api/drupal/modules%21block%21tests%21themes%21block_test_theme%21page.tpl.php/7http://api.drupal.org/api/drupal/modules%21block%21tests%21themes%21block_test_theme%21page.tpl.php/7http://api.drupal.org/api/search/7/page.tpl.phphttp://api.drupal.org/api/search/7/page.tpl.phphttp://api.drupal.org/api/search/7/page.tpl.phphttp://api.drupal.org/api/drupal/modules%21blog%21blog.info/7http://api.drupal.org/api/drupal/modules%21blog%21blog.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21blog%21blog.test/7http://api.drupal.org/api/drupal/modules%21blog%21blog.test/7http://api.drupal.org/api/drupal/modules%21blog%21blog.install/7http://api.drupal.org/api/drupal/modules%21blog%21blog.install/7http://api.drupal.org/api/drupal/modules%21blog%21blog.module/7http://api.drupal.org/api/drupal/modules%21blog%21blog.module/7http://api.drupal.org/api/drupal/modules%21blog%21blog.pages.inc/7http://api.drupal.org/api/drupal/modules%21blog%21blog.pages.inc/7http://api.drupal.org/api/drupal/modules%21blog%21blog.test/7http://api.drupal.org/api/drupal/modules%21blog%21blog.test/7http://api.drupal.org/api/drupal/modules%21blog%21blog.module/7http://api.drupal.org/api/drupal/modules%21blog%21blog.module/7http://api.drupal.org/api/drupal/modules%21blog%21blog.module/7http://api.drupal.org/api/drupal/modules%21book%21book-all-books-block.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book-export-html.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book-export-html.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book-export-html.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book-all-books-block.tpl.php/7http://api.drupal.org/api/drupal/modules%21blog%21blog.module/7http://api.drupal.org/api/drupal/modules%21blog%21blog.test/7http://api.drupal.org/api/drupal/modules%21blog%21blog.pages.inc/7http://api.drupal.org/api/drupal/modules%21blog%21blog.module/7http://api.drupal.org/api/drupal/modules%21blog%21blog.install/7http://api.drupal.org/api/drupal/modules%21blog%21blog.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21blog%21blog.info/7http://api.drupal.org/api/search/7/page.tpl.phphttp://api.drupal.org/api/drupal/modules%21block%21tests%21themes%21block_test_theme%21page.tpl.php/7
  • 7/29/2019 Drupal Files Details

    19/80

    implementation for printed

    version of book outline.

    modules/book/book-navigation.tpl.php

    Default theme

    implementation to navigate

    books.

    modules/book/book-node-export-html.tpl.php

    Default theme

    implementation for a single

    node in a printer-friendly

    outline.

    modules/book/book.admin.inc

    Admin page callbacks for the

    book module.

    modules/book/book.info

    name = Book description =

    Allows users to create and

    organize related content in

    an outline. package = Core

    version =VERSIONcore =

    7.x files[]

    =book.testconfigure =

    admin/content/book/settings

    stylesheets[all][] = book.css

    modules/book/book.install

    Install, update and uninstall

    functions for the book

    module.

    modules/book/book.module

    Allows users to create and

    organize related content in

    an outline.

    modules/book/book.pages.inc

    User page callbacks for the

    book module.

    modules/book/book.test Tests forbook.module.

    modules/color/color.info

    name = Color description =

    Allows administrators to

    change the color scheme of

    compatible themes. package

    = Core version

    http://api.drupal.org/api/drupal/modules%21book%21book-navigation.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book-navigation.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book-node-export-html.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book.admin.inc/7http://api.drupal.org/api/drupal/modules%21book%21book.admin.inc/7http://api.drupal.org/api/drupal/modules%21book%21book.info/7http://api.drupal.org/api/drupal/modules%21book%21book.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21book%21book.test/7http://api.drupal.org/api/drupal/modules%21book%21book.test/7http://api.drupal.org/api/drupal/modules%21book%21book.install/7http://api.drupal.org/api/drupal/modules%21book%21book.install/7http://api.drupal.org/api/drupal/modules%21book%21book.module/7http://api.drupal.org/api/drupal/modules%21book%21book.module/7http://api.drupal.org/api/drupal/modules%21book%21book.pages.inc/7http://api.drupal.org/api/drupal/modules%21book%21book.pages.inc/7http://api.drupal.org/api/drupal/modules%21book%21book.test/7http://api.drupal.org/api/drupal/modules%21book%21book.module/7http://api.drupal.org/api/drupal/modules%21book%21book.module/7http://api.drupal.org/api/drupal/modules%21book%21book.module/7http://api.drupal.org/api/drupal/modules%21color%21color.info/7http://api.drupal.org/api/drupal/modules%21color%21color.info/7http://api.drupal.org/api/drupal/modules%21color%21color.info/7http://api.drupal.org/api/drupal/modules%21book%21book.module/7http://api.drupal.org/api/drupal/modules%21book%21book.test/7http://api.drupal.org/api/drupal/modules%21book%21book.pages.inc/7http://api.drupal.org/api/drupal/modules%21book%21book.module/7http://api.drupal.org/api/drupal/modules%21book%21book.install/7http://api.drupal.org/api/drupal/modules%21book%21book.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21book%21book.info/7http://api.drupal.org/api/drupal/modules%21book%21book.admin.inc/7http://api.drupal.org/api/drupal/modules%21book%21book-node-export-html.tpl.php/7http://api.drupal.org/api/drupal/modules%21book%21book-navigation.tpl.php/7
  • 7/29/2019 Drupal Files Details

    20/80

    =VERSIONcore = 7.x files[]

    =color.test

    modules/color/color.install

    Install, update and uninstall

    functions for the color

    module.

    modules/color/color.module

    Allows users to change the

    color scheme of themes.

    modules/color/color.test Tests for color module.

    modules/color/preview.html

    modules/comment/comment-wrapper.tpl.php

    Default theme

    implementation to provide an

    HTML container for

    comments.

    modules/comment/comment.admin.inc

    Admin page callbacks for the

    comment module.

    modules/comment/comment.api.php

    Hooks provided by the

    Comment module.

    modules/comment/comment.info

    name = Comment description

    = Allows users to comment

    on and discuss published

    content. package = Core

    version =VERSIONcore =

    7.x dependencies[] = text

    files[]

    =comment.modulefiles[]

    =comment.testconfigure =

    modules/comment/comment.install

    Install, update and uninstall

    functions for the comment

    module.

    modules/comment/comment.module

    Enables users to comment on

    published content.

    modules/comment/comment.pages.inc

    User page callbacks for the

    comment module.

    http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21color%21color.test/7http://api.drupal.org/api/drupal/modules%21color%21color.test/7http://api.drupal.org/api/drupal/modules%21color%21color.install/7http://api.drupal.org/api/drupal/modules%21color%21color.install/7http://api.drupal.org/api/drupal/modules%21color%21color.module/7http://api.drupal.org/api/drupal/modules%21color%21color.module/7http://api.drupal.org/api/drupal/modules%21color%21color.test/7http://api.drupal.org/api/drupal/modules%21color%21color.test/7http://api.drupal.org/api/drupal/modules%21color%21preview.html/7http://api.drupal.org/api/drupal/modules%21color%21preview.html/7http://api.drupal.org/api/drupal/modules%21comment%21comment-wrapper.tpl.php/7http://api.drupal.org/api/drupal/modules%21comment%21comment.admin.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.admin.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.api.php/7http://api.drupal.org/api/drupal/modules%21comment%21comment.api.php/7http://api.drupal.org/api/drupal/modules%21comment%21comment.info/7http://api.drupal.org/api/drupal/modules%21comment%21comment.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.test/7http://api.drupal.org/api/drupal/modules%21comment%21comment.test/7http://api.drupal.org/api/drupal/modules%21comment%21comment.test/7http://api.drupal.org/api/drupal/modules%21comment%21comment.install/7http://api.drupal.org/api/drupal/modules%21comment%21comment.install/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.pages.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.pages.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.pages.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.install/7http://api.drupal.org/api/drupal/modules%21comment%21comment.test/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21comment%21comment.info/7http://api.drupal.org/api/drupal/modules%21comment%21comment.api.php/7http://api.drupal.org/api/drupal/modules%21comment%21comment.admin.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment-wrapper.tpl.php/7http://api.drupal.org/api/drupal/modules%21color%21preview.html/7http://api.drupal.org/api/drupal/modules%21color%21color.test/7http://api.drupal.org/api/drupal/modules%21color%21color.module/7http://api.drupal.org/api/drupal/modules%21color%21color.install/7http://api.drupal.org/api/drupal/modules%21color%21color.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7
  • 7/29/2019 Drupal Files Details

    21/80

    modules/comment/comment.test Tests forcomment.module.

    modules/comment/comment.tokens.inc

    Builds placeholder

    replacement tokens for

    comment-related data.

    modules/comment/comment.tpl.php

    Default theme

    implementation for

    comments.

    modules/contact/contact.admin.inc

    Admin page callbacks for the

    Contact module.

    modules/contact/contact.info

    name = Contact description

    = Enables the use of both

    personal and site-wide

    contact forms. package =

    Core version =VERSIONcore

    = 7.x files[]

    =contact.testconfigure =

    admin/structure/contact

    modules/contact/contact.install

    Install, update and uninstall

    functions for the contact

    module.

    modules/contact/contact.module

    Enables the use of personal

    and site-wide contact forms.

    modules/contact/contact.pages.inc

    Page callbacks for the

    Contact module.

    modules/contact/contact.test Tests for the Contact module.

    modules/contextual/contextual.api.php

    Hooks provided by Contextual

    module.

    modules/contextual/contextual.info

    name = Contextual links

    description = Provides contextual

    links to perform actions related to

    elements on a page. package =

    Core version =VERSIONcore =

    http://api.drupal.org/api/drupal/modules%21comment%21comment.test/7http://api.drupal.org/api/drupal/modules%21comment%21comment.test/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.tokens.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.tokens.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.tpl.php/7http://api.drupal.org/api/drupal/modules%21comment%21comment.tpl.php/7http://api.drupal.org/api/drupal/modules%21contact%21contact.admin.inc/7http://api.drupal.org/api/drupal/modules%21contact%21contact.info/7http://api.drupal.org/api/drupal/modules%21contact%21contact.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21contact%21contact.test/7http://api.drupal.org/api/drupal/modules%21contact%21contact.test/7http://api.drupal.org/api/drupal/modules%21contact%21contact.install/7http://api.drupal.org/api/drupal/modules%21contact%21contact.install/7http://api.drupal.org/api/drupal/modules%21contact%21contact.module/7http://api.drupal.org/api/drupal/modules%21contact%21contact.module/7http://api.drupal.org/api/drupal/modules%21contact%21contact.pages.inc/7http://api.drupal.org/api/drupal/modules%21contact%21contact.pages.inc/7http://api.drupal.org/api/drupal/modules%21contact%21contact.test/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.api.php/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.api.php/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.info/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.info/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.api.php/7http://api.drupal.org/api/drupal/modules%21contact%21contact.test/7http://api.drupal.org/api/drupal/modules%21contact%21contact.pages.inc/7http://api.drupal.org/api/drupal/modules%21contact%21contact.module/7http://api.drupal.org/api/drupal/modules%21contact%21contact.install/7http://api.drupal.org/api/drupal/modules%21contact%21contact.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21contact%21contact.info/7http://api.drupal.org/api/drupal/modules%21contact%21contact.admin.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.tpl.php/7http://api.drupal.org/api/drupal/modules%21comment%21comment.tokens.inc/7http://api.drupal.org/api/drupal/modules%21comment%21comment.module/7http://api.drupal.org/api/drupal/modules%21comment%21comment.test/7
  • 7/29/2019 Drupal Files Details

    22/80

    7.x files[] =contextual.test

    modules/contextual/contextual.module

    Adds contextual links to perform

    actions related to elements on a

    page.

    modules/contextual/contextual.test Tests forcontextual.module.

    modules/dashboard/dashboard.api.php

    Hooks provided by the Dashboard

    module.

    modules/dashboard/dashboard.info

    name = Dashboard description =

    Provides a dashboard page in the

    administrative interface for

    organizing administrative tasks

    and tracking information within

    your site. core = 7.x package =

    Core version =VERSIONfiles[]

    =dashboard.testdependencies[]

    modules/dashboard/dashboard.install

    Install, update and uninstall

    functions for the dashboard

    module.

    modules/dashboard/dashboard.module

    Provides a dashboard page in the

    administrative interface.

    modules/dashboard/dashboard.test Tests fordashboard.module.

    modules/dblog/dblog.admin.inc

    Administrative page callbacks for

    the dblog module.

    modules/dblog/dblog.info

    name = Database logging

    description = Logs and records

    system events to the database.

    package = Core version

    =VERSIONcore = 7.x files[]

    =dblog.test

    modules/dblog/dblog.install

    Install, update and uninstall

    functions for the dblog module.

    modules/dblog/dblog.module System monitoring and logging

    http://api.drupal.org/api/drupal/modules%21contextual%21contextual.test/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.test/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.test/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.module/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.module/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.test/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.test/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.module/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.module/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.module/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.api.php/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.api.php/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.info/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.test/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.test/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.install/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.install/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.module/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.module/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.test/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.test/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.module/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.module/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.module/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.admin.inc/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.admin.inc/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.info/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.test/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.test/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.test/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.install/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.install/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.module/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.module/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.module/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.install/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.info/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.admin.inc/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.module/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.test/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.module/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.install/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.info/7http://api.drupal.org/api/drupal/modules%21dashboard%21dashboard.api.php/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.module/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.test/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.module/7http://api.drupal.org/api/drupal/modules%21contextual%21contextual.test/7
  • 7/29/2019 Drupal Files Details

    23/80

    for administrators.

    modules/dblog/dblog.test Tests fordblog.module.

    modules/field/field.api.php

    modules/field/field.attach.inc

    Field attach API, allowing entities

    (nodes, users, ...) to be

    'fieldable'.

    modules/field/field.crud.inc

    Field CRUD API, handling field

    and field instance creation and

    deletion.

    modules/field/field.default.inc

    Default 'implementations' of

    hook_field_*(): common field

    housekeeping.

    modules/field/field.form.inc Field forms management.

    modules/field/field.info

    name = Field description = Field

    API to add fields to entities like

    nodes and users. package = Core

    version =VERSIONcore = 7.x

    files[] =field.modulefiles[]

    =field.attach.incfiles[] =

    tests/field.test dependencies[] =field_sql_storage required =

    modules/field/field.info.inc

    Field Info API, providing

    information about available fields

    and field types.

    modules/field/field.install

    Install, update and uninstall

    functions for the field module.

    modules/field/field.module

    Attach custom data fields to

    Drupal entities.

    modules/field/field.multilingual.inc

    Functions implementing Field API

    multilingual support.

    modules/field/modules/field_sql_storage/field_sql_storage.info

    name = Field SQL storage

    description = Stores field data in

    an SQL database. package =

    http://api.drupal.org/api/drupal/modules%21dblog%21dblog.test/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.test/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.module/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.module/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.module/7http://api.drupal.org/api/drupal/modules%21field%21field.api.php/7http://api.drupal.org/api/drupal/modules%21field%21field.api.php/7http://api.drupal.org/api/drupal/modules%21field%21field.attach.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.attach.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.crud.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.crud.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.default.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.default.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.form.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.form.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.info/7http://api.drupal.org/api/drupal/modules%21field%21field.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21field%21field.module/7http://api.drupal.org/api/drupal/modules%21field%21field.module/7http://api.drupal.org/api/drupal/modules%21field%21field.attach.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.attach.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.info.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.info.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.install/7http://api.drupal.org/api/drupal/modules%21field%21field.install/7http://api.drupal.org/api/drupal/modules%21field%21field.module/7http://api.drupal.org/api/drupal/modules%21field%21field.module/7http://api.drupal.org/api/drupal/modules%21field%21field.multilingual.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.multilingual.inc/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.info/7http://api.drupal.org/api/drupal/modules%21field%21field.multilingual.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.module/7http://api.drupal.org/api/drupal/modules%21field%21field.install/7http://api.drupal.org/api/drupal/modules%21field%21field.info.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.attach.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.module/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21field%21field.info/7http://api.drupal.org/api/drupal/modules%21field%21field.form.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.default.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.crud.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.attach.inc/7http://api.drupal.org/api/drupal/modules%21field%21field.api.php/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.module/7http://api.drupal.org/api/drupal/modules%21dblog%21dblog.test/7
  • 7/29/2019 Drupal Files Details

    24/80

    Core version =VERSIONcore =

    7.x dependencies[] = field files[]

    =field_sql_storage.testrequired =

    TRUE

    modules/field/modules/field_sql_storage/field_sql_storage.install

    Install, update and uninstall

    functions for the

    field_sql_storage module.

    modules/field/modules/field_sql_storage/field_sql_storage.modul

    e

    Default implementation of the

    field storage API.

    modules/field/modules/field_sql_storage/field_sql_storage.test

    Tests

    forfield_sql_storage.module.

    modules/field/modules/list/list.info

    name = List description =

    Defines list field types. Use with

    Options to create selection lists.

    package = Core version

    =VERSIONcore = 7.x

    dependencies[] = field

    dependencies[] = options files[]

    = tests/list.test

    modules/field/modules/list/list.install

    Install, update and uninstall

    functions for the list module.

    modules/field/modules/list/list.module

    Defines list field types that can

    be used with the Options module.

    modules/field/modules/list/tests/list.test Tests forlist.module.

    modules/field/modules/list/tests/list_test.info

    name = "List test" description =

    "Support module for the List

    module tests." core = 7.x

    package = Testing version

    =VERSIONhidden = TRUE

    modules/field/modules/list/tests/list_test.module

    Helper module for the List

    module tests.

    modules/field/modules/number/number.info

    name = Number description =

    Defines numeric field types.

    package = Core version

    http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.install/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.install/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.install/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.install/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list_test.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list_test.info/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list_test.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list_test.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21number%21number.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21number%21number.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21number%21number.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list_test.module/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list_test.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21tests%21list.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.install/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7http://api.drupal.org/api/drupal/modules%21field%21modules%21list%21list.info/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.test/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.module/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.install/7http://api.drupal.org/api/drupal/modules%21field%21modules%21field_sql_storage%21field_sql_storage.test/7http://api.drupal.org/api/drupal/includes%21bootstrap.inc/constant/VERSION/7
  • 7/29/2019 Drupal Files Details

    25/80

    =VERSIONcore = 7.x

    dependencies[] = field files[]

    =number.test

    modules/field/modules/number/number.install

    Install, update and uninstall

    functions for the number module.

    modules/field/modules/number/