Drupal 6 Web Application Development Tutorial

Size: px
Start display at page:

Download "Drupal 6 Web Application Development Tutorial"

Transcription

1 Table of Contents Welcome to the world of Drupal!!!... 2 Installation... 3 Drupal s Model of a Web Application... 8 Application Development Library System Example Going Further Document Version Control Author Date Comments Gokulmuthu 24-Aug-2012 First published version Gokulmuthu Added more features to the example. Gokulmuthu Narayanaswamy

2 Welcome to the world of Drupal!!! Gone are the days when you need to write tons and tons of code to develop web applications. With the advent of Drupal, almost the entire application development can be done without writing a single line of code. If you are looking towards using Drupal merely as a CMS, then this is tutorial is not for you. If you are planning to use Drupal to develop a web application, or if you want to just try to get a taste of Drupal based web application development, then you can use this tutorial to kickstart your development. The strength and weakness of Drupal is that the development environment is built piece by piece by the community around the core. So to be able to get a good feature set, you need to download quite a number of modules and install into the Drupal framework. To make this step easy, I have already collected a good collection of modules that I have used in my applications and packaged them. You can download my Drupal Application Development Base and other software to run Drupal from my Drupal site at If you are following through this tutorial, you can download the components as and when they are mentioned. Versions As of when I am writing this tutorial, the most popular Drupal version is 6. Drupal 5 started the revolution. Though there are a number of sites still running Drupal 5, for all new development, Drupal 6 is recommended. Drupal 7 is coming up well. Still there are not as much contributed modules for Drupal 7 as for Drupal 6. So, I have decided to stick to Drupal 6 for now. Caution This tutorial is only for starting off learning Drupal. So the passwords mentioned are very trivial. You should use much stronger passwords in your final deployment. Also, as this tutorial is designed for people to try out Drupal, I have assumed that you are doing this on Windows machine. Finally you may want to deploy it on a Linux machine or on a cloud service. It is very easy to move a Drupal installation from one server to another, provided the versions of Apache, PHP and MySQL used are compatible. Please use this tutorial at your own risk. I am not responsible for any damage caused by your following or not following any steps mentioned in this tutorial. I am not obliged to support you if you get stuck. Please use the Drupal support forums for help or seek professional assistance. Page 2 of 33

3 Installation Dependencies Drupal needs PHP and MySql. PHP needs to be hosted on a HTTP server like Apache or Lighttpd. If you are developing on a Linux machine, most probably the entire development environment is present. If you want to try it out on a Windows machine, which I assume you are doing it here, WAMP is an excellent choice of platform. You can download WAMP here. This 2.2e version of WAMP comes with Apache , Php and Mysql , which are suitable for running Drupal 6. Installing WAMP server Download and install the WAMP server on your Windows machine. It is possible that there is already another HTTP server running on your machine. To be on the safer side, let us change the port to run HTTP server. To do this, click on the SysTray icon and select Apache > httpd.conf. This will open the HTTP server configuration file in a text editor. Find the line which says Listen 80. Change the 80 to 8080, save the file and click on the SysTray icon and select Restart All Services. (There are more efficient ways to do this. But let us keep things simple for now.) If the icon is still not green, possibly the port 8080 is also being used. Try some other port number like This value can be between 1024 and When the icon is green, if you open (where 8080 is the number that you entered in the httpd.conf) in a web browser, you should see the home page of the local WAMP server. Installing Drupal Download the Drupal 6 Application Development Base from Note that some modules in this version are slightly enhanced to extend their features. Extract the zip file in the WAMP server s www directory. To open this directory, click on the SysTray icon and select www directory. You should have a directory named drupal6, which contains folders and files like below. Page 3 of 33

4 Download the Drupal 6 Application Development Base database from You will get a file named drupal6.mysql_.zip. Rename it to drupal6.mysql.zip. Open the home page of the local WAMP server. Under the heading Tools, you can find a link to phpmyadmin. Click on that. The phpmyadmin page will open. At the center, you can find a link called Users. Page 4 of 33

5 Click on that. In the next screen, you can find a link called Add user. In the pop up dialog, enter drupal6 as the User name. Select Local as the Host. Enter password as drupal6 in both the password fields. Select Create database with same name and grant all privileges. Click on Add user below the form. You can find that database is created. Click on drupal6 in the list of databases on the left. Page 5 of 33

6 Click on the link Import. Use the Browse button to select the file drupal6.mysql.zip that you had downloaded. Click on the button Go at the bottom. Wait for some time. When the database is imported, it will show Import has been successfully finished. Edit the file drupal6\sites\default\settings.php in the www directory. Make sure that the $db_url is set like this: $db_url = 'mysql://drupal6:drupal6@localhost/drupal6'; Page 6 of 33

7 Make sure that the $base_url is set like this: $base_url = ' // NO trailing slash! If you are running the HTTP server on a port different from 8080, you need to mention that number instead of Save the file and close the editor. Now, open the home page of the local WAMP server. Under the heading Your Projects, you should see drupal6. Click on that. You should see the local Drupal 6 Development Base website. This is the start of your unforgettable journey. Be ready to be amazed!!! Page 7 of 33

8 Drupal s Model of a Web Application Before we start developing a web application, we need to understand Drupal s model of a web application. Here, you can find the vocabulary and the model introduced. (These are based on Drupal 6. Drupal 7 has a different vocabulary.) Role There would be several people using the application. Each person would want to do several things with the application. For example, a library system would be used by the stock manager, librarian and member. An online test system would be used by the question bank manager, examinee and examiner. A project management system would be used by the project manager, software developer and test engineer. Each type of people who use the application is called a role. The role of the user who has not logged into the application is called anonymous user. The general role of all users who have logged in to the application is called authenticated user. All other roles are various types of authenticated users. User Users can be allowed to register themselves or can be allowed to be created only by some role. If users are allowed to register themselves, approval can be enforced or can be automatically approved based on validation. Users can be allowed to change their password, address and login name. Content type The application would manage several types of contents. Instances of these content types can be created, updated, retrieved (or viewed) and deleted (CURD). An instance of a content type is called content or a node. For example, a library system would manage books, reservations, new book requests and delivery requests. An online test system would manage courses, questions, question sets and tests. A project management system would manage projects, requirements, test cases, releases, defects and documents. Basic information like creation date, user who created the content and last updated date is maintained automatically for every content. Optionally, content revisions can be maintained to keep track of changes to the content. Field A content type would have several fields. Fields can be of types like integer, floating point, date, single line text, multiline text, reference to a user of a particular role, reference to a content of a particular type, address and image. The fields can have single or multiple values. They may be mandatory or optional. Depending on the field type, they can be presented for entry or editing in several ways. For example, an integer field can be presented for entry or editing as a simple entry box, as a selection list or as a series of radio buttons. By default, every content has a mandatory field called Title. This can be auto-generated if required. This field is displayed when showing this content in a list. This is usually shown as a link to a page with all the fields in the content. Page 8 of 33

9 Fields can also be automatically computed based on the values of other fields or by a PHP code snippet. Also, though Drupal allows using the same field in multiple contents, it makes the database queries less efficient in Drupal 6. It is advisable not to use existing fields in contents. View The application would consist of various lists. Lists are implemented using Views. For example, a library system would involve list of books rented by a member, list of delivery requests for an area and list of members whose subscription would expire in the next 15 days. An online test system would involve list of examinees for a course, list of questions for a course, list of questions for a test, list of answers by an examinee in a test, list of marks of an examinee in all tests of a course and list of marks of an examinee in all courses. A project management system would involve list of requirements of a project, list of test cases for a requirement, list of defects in a release and list of releases of a project. Permissions In an application, each content type would be allowed to be created, updated, retrieved or deleted only by specific roles. The person who created a particular content is called the author of the content. The permissions to update, retrieve and delete operations would apply at two levels own or any. Some roles would be allowed to update only the contents of which the person trying to update is the author (own content). Some roles would be allowed to update the contents which were not created by them also (any content). Permissions can also be applied at field level. For example, even if a role is allowed to view all content of a content type, some fields in the content type can be denied permission to be viewed. Permissions can also be transitive. For example, if a content type has a field which is a reference to another content, permissions can be transferred like, anyone who is able to edit the referenced content can view this content. Or, for example, if a content type has a field which is a reference to a user, permissions can be granted to the user who is referenced. Rules Rules are actions to be taken upon various events. The events can be like creation of a content, updation of a content, deletion of a content, change of a field in a content and setting the value of a field in a content to a particular value. Actions can be like sending mail to some people, changing permission of a content and setting the field of a content to particular value. Pages and blocks In any page, there would be a primary node, form or view shown. In addition to that, there can be several blocks with nodes, forms and views shown in each of them. Depending on the theme, blocks can be presented in the header, left column, right column, content (center column) or footer. The first page that is shown when a user logs in is called the front page. Page 9 of 33

10 Menu and navigation You can show a block of navigation tree at the left or right column to help the user find the way to do what he wants to do. You can also show a list of links at the top right. The links shown at the top right are usually called Primary links. Page 10 of 33

11 Application Development Before you start developing your web application, you should have a clear picture of the roles, content types, fields, views and permissions in your application. You can do a lot of tuning easily as you develop the application. But it helps to think on these lines well before starting to develop. Then you can add the rules, blocks and menus. Then you can tune the look and feel of your site for various roles. Drupal allows integrating user login with various systems like OpenID (users can login using their Yahoo id and password), LDAP (users can login using existing login on a Windows or Linux server), etc. There are modules that can be installed for other login systems. Drupal has modules to do e-commerce. There are also modules and features which implement a lot of functionality like shopping carts, project management, defect tracking, etc. Those are not included in this development base. You can install later if needed. Once you are familiar with the basic application development, you can search in the Drupal website for various contributed modules. The login which is allowed to do the development and management of the website is called the administrator. In the system that you have installed in this tutorial, the administrator account has login as admin and password as admin. The top black bar has drop-down links to almost all development and administration actions. To continually test the application as you develop, you will have to login as people of different roles. So it is better to have different browsers installed on your system. You can do the development from one browser and do the testing from another browser. Page 11 of 33

12 Library System Example Design Let us design a library system. We will first create the basic features and then add more. We can create several applications that will interact on the same website. So, the keys should have the name of the application so that they do not clash. Roles Role name Key Capabilities Unauthorized user unauthorized user Can browse books Member library_member Can browse books Can view history of borrowed books Librarian library_librarian Can browse books Can issue books Stock manager library_stk_mgr Can create/edit/browse books Users Users can be created only by the librarian. Content types Content type name Key Description Library book library_book A book in the library Book issue library_issue An instance of an issue of a book Fields Here we design the fields for each content type. Book Field name Key Type Multiple Mandatory? Default Description values? value Title title Text Not applicable Yes None Title of the book Author book_author Text Yes Yes None Author(s) of the book Id book_id Serial number No Yes Auto generated serial Unique number of the book Status book_status Integer from a list number No Yes 0-Available 0-Available 1-In circulation 2-Under repair 3-Lost 4-Removed Page 12 of 33

13 Genre book_genre Text from a list Yes Yes None General Fiction Non-fiction Self-help Children Adventure Travel Hobby Activity Sports Classic Book issue Field name Key Type Multiple values? Title title Text Not applicable Book issue_book Node reference to book Member issue_member User reference to member Status issue_status Integer from a list Date of return Mandatory? Default value Description Yes Auto generated based on date and book id No Yes None Book being issued No Yes None Member to whom the book is being issued to No Yes 0-Issued 0-Issued 1-Returned 2-Lost issue_return Date No No None Date of return, if applicable Views View Key Arguments Description List of books all_books None List of all books with filters Book borrow history all_ issues Member List of books borrowed with filters Permissions Unauthorized user Member Librarian Stock manager Page 13 of 33

14 Create book No No No Yes Edit book No No No Yes Delete book No No No No View book Yes Yes Yes Yes Create issue No No Yes No Edit issue No No Yes No Delete issue No No No No View issue No Where member is the borrower Yes No Rules When we issue a book, we should change its status to In circulation. When a book is returned, the status should be changed back to Available. Pages and blocks Unauthorized users should see the list of books. When member logs in, the issue history should be displayed in reverse chronological order. When librarian logs in, the issue form should be displayed. When stock manager logs in, the book add form should be displayed. Menu and navigation Extra menus at the top: Unauthorized user Member Librarian Stock manager Book list No Yes Yes Yes Issue history No Yes Yes No Create book No No No Yes Issue book No No Yes No Manage users No No Yes No Implementation Once you have the design of the application done, implementation is merely transferring it on to the system. On one browser, login as admin with password as admin. On another browser we need to login as different roles for testing. Roles We need to create the roles. Select User management > Roles from the admin bar on the top. The two default roles are already present. Create the other roles - library_member, library_librarian and library_stk_mgr. Page 14 of 33

15 Users We need to give librarian the permission to create users. Select User management > Permissions from the admin bar. This is the master table for permissions. Scroll to the bottom. Under user module, you can find the various actions on users. Select the check box for administer users for librarian. Click Save permissions at the bottom of the page. This is the time to create some test users. Select User management > Users > Add user from the admin bar. Create test users as below: Username address Password Roles m1 123 library_member m2 123 library_member l1 123 library_librarian s1 123 library_stk_mgr Click on the List tab or select User management > Users > List from the admin bar to see the list of users. On the other browser, login as l1. Open the URL You should see the user list. Logout and login as m1. Open the URL You should see Access denied. Content types and fields Next we need to create our content types with the fields that we designed. Select Content management > Content types > Add content type from the admin bar. Enter the details as: Name: Library book Type: library_book Description: A book in the library Click on Submission form settings. As we do not want a body for the book, remove the text Body from the Body field label. Click on Save content type at the bottom of the form. Select Content management > Content types > Edit Library book > Manage fields from the admin bar. Enter the details as below and click Save. Page 15 of 33

16 In the Help text, type in Please enter the full name of one author of the book. Check the box Required. Change the Number of values to Unlimited. Click on Save field settings at the bottom of the page. Enter the details as below and click Save. Enter the details as below and click Save. In the Help text, type in Current status of the book. Check the box Required. In the Allowed values list, enter as below: Page 16 of 33

17 Click on Save field settings at the bottom of the page. To set the default value, click on the configure link of the Status field. Click on Default value. Select Available. Click on Save field settings at the bottom of the page. Enter the details as below and click Save. In the Help text, type in Genre of the book. Check the box Required. Change the Number of values to Unlimited. In the Allowed values list, enter as below: Click on Save field settings at the bottom of the page. Select Content management > Content types > Add content type from the admin bar. Enter the details as: Name: Book issue Type: library_issue Description: An issue of a book in the library Page 17 of 33

18 Click on Submission form settings. As we do not want a body for the book, remove the text Body from the Body field label. Click on Automatic title generation. Select Automatically generate the title and hide the title field. Leave the Pattern for the title blank. We need to come back after creating the fields. Click on Save content type at the bottom of the form. Select Content management > Content types > Edit Book issue > Manage fields from the admin bar. Enter the details as below and click Save. Check the boxes Create Book and Edit Book, regardless of the node author, because we do not want to allow editing this field after issuing a book. Check the box Required. Select Library book as the Content types that can be referenced as shown below. Page 18 of 33

19 Click on Save field settings at the bottom of the page. Enter the details as below and click Save. Check the boxes Create Member and Edit Member, regardless of the node author. Check the box Required. Select library_member as the User roles that can be referenced. Select Active users as the User status that can be referenced. Click on Save field settings at the bottom of the page. Create the Status field of issue as an integer that will take values and default value as mentioned in the design. Enter the details as below and click Save. Change the Input format to something that is closer to the convention that is used in your country. In the Help text, type in To be filled when the book is returned. Change the Granularity to have only year, month and day. Change Time zone handling to No time zone conversion. Click on Save field settings at the bottom of the page. Now select Content management > Content types > Edit Book issue > Manage fields from the admin bar. Select Automatic title generation. Type in [field_issue_member-name]-[yyyy]-[mm]-[dd] in the Pattern for title. If you click on the Replacement patterns link, you can see the list of patterns allowed. Click on Save content type at the bottom of the page. Permissions Next we need to set the permissions. Select User management > Permissions from the admin bar. Scroll down to the section node module. Set the permissions for library_librarian to create library_issue content and for library_stk_mgr to create library_book content. Also, give permission to libray_librarian to create field_issue_book and create field_issue_member. The other permissions can be set in the content type pages. Scroll down to the bottom of the page and click on Save permissions. Now select Content management > Content types > Edit Library book > Access control from the admin bar. Set the access permissions as below: Page 19 of 33

20 Click on Submit at the bottom of the page. Now select Content management > Content types > Edit Book issue > Access control from the admin bar. Set the access permissions as below: Click on Submit at the bottom of the page. Now select Content management > Content types > Edit Book issue > Manage fields > Member from the admin bar. In Node access user reference, under Grants for referenced users, enable View. Click on Save field settings at the bottom of the page. Page 20 of 33

21 Menu and navigation Let us now create the menu links for the actions possible so far. Select Site building > Menus > List menus from the admin bar. Click on Primary links. First let us add a link for library_stk_mgr to create a book. Select Add item tab. On the admin bar, move the mouse over Content management > Create content > Library book. Right click and copy the link address. Paste it in the Path entry field. Remove all the text before node. Type in Create book in the Menu link title. In the Description, type in Add a new book to the library. Click on Restrict item visibility. Select only library_stk_mgr. Click on Save at the bottom of the page. Similarly, add a menu link to issue a book for the librarian. You can enter details like this: Page 21 of 33

22 Set permissions like this: Click on Save at the bottom of the page. Now we need to rearrange the order of the links. Drag the menu items to order them like this: Click on Save configuration at the bottom of the page. Page 22 of 33

23 Test Now that we have created the content types, created some menu links and set permissions, login in the second browser as m1, l1 and s1, and see how the menu items appear for each login. Login as s1. Create these 5 books using the Create book link on the top. Title Author(s) Genre(s) The Alchemist Paulo Coelho Adventure Tuesdays with Morrie Mitch Albom Non-fiction 7 Habits of Highly Effective People Stephen R. Covey Non-fiction, Self help The One Minute Manager Ken Blanchard, Spencer Non-fiction, Self help Johnson Who Moved My Cheese? Spencer Johnson Non-fiction, Self help Login as l1. Issue these 3 books using the Issue book link on the top. Title Member The Alchemist m1 Tuesdays with Morrie m2 7 Habits of Highly Effective People m2 Views Now, let us create the lists to show to various users. Select Site building > Views > List from the admin bar. Click the Add tab. Enter View name as all_books. Enter View description as List of books. Click on Next at the bottom of the page. This shows the Views configuration page. Click on the + sign next to Filters. Select Node as the Groups. Select Node: Type and click on Add. Select the Operator as Is one of and the Node type as Library book. Click Update. Click on the + sign next to Fields. Select the following fields: Content: Author (field_book_author) Content: Genre (field_book_genre) Content: Id (field_book_id) Content: Status (field_book_status) Node: Title Click on Add. When asks details for each field, just scroll down and click on Update. Click on the link Unformatted against the Style: in the Basic settings. Select Table as the style and click on Update. Select Title as the Default sort and click on Update. Now you can see the table in the preview. Page 23 of 33

24 Click on the double arrow next to Fields. Rearrange the order as below: Click on Update. In the Basic settings, change the Use pager to Full pager. Click on Update. Click on Save. Keeping the type of view below the Defaults as Page, click on Add display. Keeping the Page tab selected at the left, click on the link None next to Path: in the Page settings. Type in all_books in the URL entry box. Click on Update. Click on the link No menu next to Menu: in the Page settings. Enter the details as below. Click on Update. Click on Save. Select Site building > Menus > List menus in the admin bar. Select Primary links. Drag the Books menu item to the top. Click on Save configuration. You can see the Book menu item at the top of the page. Click on that. You can see the book list displayed. Page 24 of 33

25 Select Site building > Views > List from the admin bar. Click the Add tab. Enter View name as all_issues. Enter View description as List of books issued. Click on Next at the bottom of the page. This shows the Views configuration page. Click on the + sign next to Filters. Select Node as the Groups. Select Node: Type and click on Add. Select the Operator as Is one of and the Node type as Book issue. Click Update. Click on the + sign next to Fields. Select the following fields: Content: Book (field_issue_book) Content: Date of return (field_issue_return) Content: Member (field_issue_member) Content: Status (field_issue_status) Node: Post date Click on Add. When asks details for each field, just scroll down and click on Update. Click on the link Unformatted against the Style: in the Basic settings. Select Table as the style and click on Update. Select Post date as the Default sort, change the Default sort order to Descending and click on Update. Now you can see the table in the preview. Click on the double arrow next to Fields. Rearrange the order as below: Click on Update. In Fields, click on the link Node: Post date. Change the Label to Issued date. Click on Update. In the Basic settings, change the Use pager to Full pager. Click on Update. Click on Save. Keeping the type of view below the Defaults as Page, click on Add display. Keeping the Page tab selected at the left, click on the link None next to Path: in the Page settings. Type in all_issues in the URL entry box. Click on Update. Click on the link No menu next to Menu: in the Page settings. Enter the Page 25 of 33

26 Type as Normal menu entry, Title as Issued books, Description as List of all book issues. Click on Update. Click on Save. Select Site building > Menus > List menus in the admin bar. Select Primary links. Drag the Issued books menu item to below the Books menu item. Click on Save configuration. Click on edit link on the row of Issued books. Click on Restrict item visibility. Select only library_librarian. Click on Save. Select Site building > Views > List from the admin bar. Click on the Edit link on the row of all_issues. Keeping the type of view below the Defaults as Page, click on Add display. Keeping the Page tab selected at the left, click on the link None next to Path: in the Page settings. Type in my_issues in the URL entry box. Click on Update. Click on the link No menu next to Menu: in the Page settings. Enter the Type as Normal menu entry, Title as Issue history, Description as History of all my book issues. Click on Update. Click on Save. Click on the second Page in the vertical tabs in the left. Ensure that the Path is displayed as my_issues. Click on Content: Member in the Fields. Scroll down and click on Remove. Click on Save. Select Site building > Menus > List menus in the admin bar. Select Primary links. Drag the Issue history menu item to below the Books menu item. Click on Save configuration. Click on edit link on the row of Issued books. Click on Restrict item visibility. Select only library_member. Click on Save. Test Login as m1. Click on Issue history at the top. Only the book issued to m1 should be displayed. Login as m2. Click on Issue history at the top. Only the books issued to m2 should be displayed. Login as l1. Click on Issued books on the top. All the books issued should be displayed. Rules If you had noticed, the status of all the books are shown as Available, even though we have issued some books. When we issue a book, we should change the status of the book to In circulation. Similarly, when the book is returned, we should change the status of the book back to Available. Is the book is lost, we should change the status of the book to lost. Select Rules > Triggered rules > Add a new rule in the admin bar. Set the Label as Change status of book during issue. Select Event as After saving new content. Click on Save changes. Click on Add a condition. Select the condition as Content has type. Click on Next. Select Content types as Book issue. Click on Save. Click on Add an action. Select the action as Load a referenced node. Click on Next. Select the Field as field_issue_book. Change the Label as Issued book. Change the Machine readable variable name as issued_book. Click on Save. Click on Add an action. Select the action as Populate a field. Click on Next. Select Content as Issued book. Select the field as field_book_status. Click on Continue. Change the Status to In circulation. Click on Save. Select Rules > Triggered rules > Add a new rule in the admin bar. Set the Label as Change status of book during return. Select Event as After updating existing content. Click on Save changes. Click on Add a condition. Select the condition as Content has type. Click on Next. Select Content types as Book issue. Page 26 of 33

27 Click on Save. Click on Add a condition. Select the condition as Field has value. Click on Next. Select Field as field_issue_status. Select Status as Returned. Click on Save. Click on Add an action. Select the action as Load a referenced node. Click on Next. Select the Field as field_issue_book. Change the Label as Issued book. Change the Machine readable variable name as issued_book. Click on Save. Click on Add an action. Select the action as Populate a field. Click on Next. Select Content as Issued book. Select the field as field_book_status. Click on Continue. Change the Status to Available. Click on Save. Select Rules > Triggered rules > Overview in the admin bar. Click on the link clone on the row Change status of book during return. Change the Label to Change status of book when lost during return. Click on Save changes. Click on the condition Updated content s field field_issue_status has value. Change the Status to Lost. Click on Save. Click on the action Populate Issued book s field field_book_status. Change the Status to Lost. Click on Save. Test Select Content management > Content > List from the admin menu bar. Select Update options as Delete. Select the three contents of type Book issue. Click Update. Select Delete all. Login as l1. Issue these 3 books using the Issue book link on the top. Title Member The Alchemist m1 Tuesdays with Morrie m2 7 Habits of Highly Effective People m2 Click on Issued books link to see the books issued. Click on Books to see the updated status of the books. Adjustment to views We need to do more to the Issued books view for the librarian to work further. Select Site building > Views > List on the admin bar. Edit all_issues. Select the page which has path as all_issues. Add the Node: Edit link as a field to be displayed with label as Edit. Click Update and override. Select the + next to Filters. Select Content: Member (field_issue_member). Click on Add. Click on Expose. Change the Label to Member. Click Update and override. Select the + next to Filters. Select Content: Status (field_issue_status) - Allowed values. Click on Add. Click on Expose. Change the Label to Status. Click Update and override. Click Save. Test Login as l1. Click on Issued books link to see the books issued. Click on the edit link of the row 7 Habits of Highly Effective People. Change the Status to Returned and set today as the date of return. Click Save. Click on the edit link of the row The Alchemist. Change the Status to Lost and set today as the date of return. Click Save. You can test the filters now. Click on Books link at the top to see the status various books. Page 27 of 33

28 Enhancement Book issue records which are in Returned state should not be editable. We should remove the default permission to edit. We will give special permission only for issue records which are in Lost or Issued. Select Content Management > Content types > Edit Book issue > Access control from the admin menu bar. Remove the Edit permission for library_librarian. Select Enable per content node access control settings. Click Submit. Select Rules > Triggered rules > Add a new rule from the admin menu bar. Enter Label as Grant permission to edit issue when creating, and Event as After saving new content. Click on Save changes. Add a condition to apply this rule only to created content of type Book issue. Add a condition to apply this rule only if field_issue_status field does not have value Returned. Add an action to Grant content permission by role. Here give Edit permission to library_librarian. Select Rules > Triggered rules > Overview from the admin menu bar. Click Change status of book during return. Click on Rule settings. Change the label to Change status of book during return and reset permission of issue. Click on Save changes. Add an action to Reset content permissions. Test In admin login, click on Issued books link at the top. Edit the Issued and Lost books one by one. Click on the Access control tab. Grant Edit permission to library_librarian. Actually this would have happened automatically if we had the rules in place earlier. We can manually fix these now to make the state correct. Now login as l1. Click on Issued books link. You will find that the edit link is shown only for Issued and Lost books. Edit the book The One Minute Manager and change the status to Returned. Set today s date as the date of return. Now you can find that edit link has vanished for that book. Show only available books for issue When you click on Issue book, all the books are shown, including those in circulation and lost. We should see only books that are in Available state. Select Site building > Views > List on the admin bar. Click on the Add tab. Type in books_of_status as the View name. Type in List of all books with the given status as the Views description. Click on Next. Select Content: Status (field_book_status) as Argument and Node: Type as filter. Select Is one of and Library book as the criteria for node type. Change the order of filters to have node type as the first filter. Add Node: Title as the Field with Label as empty. Click Save. Select Content Management > Content types > Edit Book issue > Manage fields > Book from the admin menu bar. Click on Advanced Nodes that can be referenced (View). In View used to select the nodes, select books_of_status. Enter this in the PHP Code block: $uri = $_SERVER['REQUEST_URI']; if(strstr($uri, /edit') == FALSE) Page 28 of 33

29 return array(0 => 0); else return array(); Click Save field settings. Test Login as l1. Click on Issue book. You can see that only books that are available are listed. Issue the book The One Minute Manager to m1. Click on Issue book again. You can find that the issued book is not listed. You can click on Issued books to see it listed there. Enhancement Selecting return date every time is a pain. If the librarian has not set a return date, we should set it to today. Select Rules > Triggered rules > Add a new rule from the admin menu bar. Enter Label as When returning book, set date if not already set, and Event as After updating existing content. Click on Save changes. Add a condition to apply this rule only to content of type Book issue. Add a condition to apply this rule only if field_issue_status field does not have value Issued. Add a condition to apply this rule only if field_issue_return field has empty value. Click on Advanced: Specify the fields value with PHP code. Type in return array(0 => array('value' => NULL)); in the box. Click Save. Add an action to populate the field_issue_return field. Click on Advanced: Specify the fields value with PHP code. Type in return array(0 => array('value' =>time())); in the box. Click Save. Select Content Management > Content types > Edit Book issue > Manage fields > Date of return from the admin menu bar. Change the Help text to To be filled if this needs to be a different date than today. Click Save field settings. Test Now login as l1. Click on Issued books link. Edit the Issued book Tuesdays with Morrie. Change the Status to Returned. Do not fill the Date of return. Click Save. You can see that the current date is taken as the Date of return. Enhancement Status and Date of return fields need not be shown when issuing a book. Select Content Management > Content types > Edit Book issue > Manage fields > Book from the admin menu bar. In Field permissions section, select Create Date of return (edit on node creation) and Edit Date of return, regardless of node author. Click Save. Select Content Management > Content types > Edit Book issue > Manage fields > Status from the admin menu bar. In Field permissions section, select Create Date of return (edit on node creation) and Edit Date of return, regardless of node author. Click Save. Page 29 of 33

30 Select User management > Permissions from the admin menu bar. In field_permissions_module, enable edit field_issue_return and edit field_issue_status for library_librarian. Click Save permissions. Test Now login as l1 and issue a book and return the book, to verify the change in the form and confirm that everything works fine. Enhancement As the librarian will mostly be issuing and returning books, we can make the Issued books page as the default page. Members and stock manager can have the list of all books as the default page. Also, we can add the Book issue form to all the pages for librarian. Select User management > Permissions from the admin menu bar. In front_page_module section, enable access frontpage for library_librarian. Click Save permissions. Select Site configuration > Front page. Click Front Page for authenticated user. Select type as redirect. Type in all_books in the Redirect to box. Click Front Page for library_librarian. Select type as redirect. Type in all_issues in the Redirect to box. Click Save configuration. Note that you should never redirect the Front page for anonymous user. Select Content management > Content types > Edit Book issue from the admin menu bar. Change Enable data entry from a block to Enabled. Click on Save content type. Select Site building > Blocks > List. On the row of Book issue form block, change the region to Left sidebar. Click on Save blocks. As the logic that we have used to select the list of books depends on the URI, we can show this block on all pages except the Edit issue page. Click on the configure link on the row of Book issue form block. Select only library_librarian as the role to show the block to. Type in node/*/edit in the pages to skip. Click on Save block. Also, we can remove the menu item to issue book. Select Site building > Menus > List menus from the admin menu bar. Click on the link Primary links. Click on the delete link on the row of Issue book and confirm. Test Login as m1. You can see the list of books as the default page. Login as l1. You can see the list of issues as the default page. Also, see that the Book issue page is shown in a block in the left. Enhancement If there are a large number of books, the selection list will not be convenient to use. Also, the librarian will have the book in his hand when issuing. So he can type in the title of the book. Select Content management > Content types > Edit Book issue > Manage fields > Book from the admin menu bar. Click on Change basic information. Change the Widget type to Autocomplete text field. Click on Continue and click on Save field settings. Rebuild the permissions whenever it asks to. Test Login as l1 and play around with the book titles. This is a very neat feature of Drupal. Page 30 of 33

31 Enhancement Let us add images to books. Go to some website where the books are listed with images like flipkart.com, amazon.com or mylib.in. Go to Manage fields of Library book content type. Add new field called Cover with the field name as field_book_cover. Select type as File. Select Form element to edit the data as Image. Click on Save. Leave everything as it is and click on Save field settings. Test Login as s1. Click on Books link. Click on each book, edit, upload its image and save. Enhancement Now, let us improve the listing. Open the Views of all_books. Edit the page view. Add another page view with the path all_books_compact. Save the views. Now select the views with path all_books. Add the cover as a field. Select Label as None. Select Format as Image linked to node. Click on Update and override. Change the Style in Basic settings to Grid. Remove Content: Id from the fields to display. Move the Cover to the top of the list of fields. Make sure to always edit the page with path to all_books and whenever provided with choice, choose Update and override. Save the view. In the header and footer of the page with path as all_books, type in <a href="?q=all_books_compact">click here for compact view</a> and save. In the header and footer of the page with path as all_books_compact, type in <a href="?q=all_books ">Click here for detailed view</a> and save. Make sure to always choose Update and override. Select Content management > Content types > Edit Library book > Display fields > Basic. Set the Label to Inline for all the fields. Click Save. This will make the fields with a single value align with the label and look better. Test Login as any user and see the book list. Try both the views. Enhancement Let us add review for books. Enable the features of the Voting module at the end of the modules list. Enable URL Fill module. Add a new content type called book_review. Title label can be changed to One-line summary. The body label can be changed to Comments. Have field_review_book as a node reference to the Library book with autocomplete text field as the widget. In the URL Fill section, enable it. Select Hide field. Have field_review_rating as a type Fivestar rating and widget as Stars. Uncheck Allow user to clear value. Set the default rating as 3. Set the voting target as the node reference to field_review_book. Mark it as required. Go to Manage fields of Library book content type. Add a new field field_add_review_link with Add review as label, type as Computed and widget as Computed. In the Display format, type in $display = "<a href='?q=node/add/book-review&field_review_book=".$node->nid."'>click here to add a review to this book</a>"; Uncheck Store using the Click on Save field settings. Page 31 of 33

32 Select User management > Permissions. Select authenticated user for create book_review content, delete own book_review content and edit own book_review content. Select library_stk_mgr for delete any book_review content and edit any book_review content. Save permissions. Test Login as m1. Create a review for the book The Alchemist. Login as m2. Create another review for the same book. Enhancement We need to add the list of reviews to the corresponding books. Enable the features View Reference and Viewfield in the modules list. Create a view called reviews_for_book. Add a filter to restrict to type book_review. Add an argument with field_review_book. Add fields title, body and field_review_rating. Set all labels to None. Rearrange the fields to have title, rating and then body. Save the view. Go to Manage fields of Library book content type. Add a new field field_book_reviews. Select Views as the type. Select Always use default value. Click on Default value. Select reviews_for_book Defaults as the Reviews and %nid as the Arguments. Select Required and reviews_for_book as the Allowed values. Save the field settings. Test Login as m1. Click on the book The Alchemist. You can see the reviews. Site look and feel To change the name of the site, go to Site configuration > Site information from the admin menu bar. To change the icon, colors and theme, go to Site building > Themes. You try various themes. To remove the Submitted by from the book pages, disable it at Site building > Themes > Configure > Global settings. Further enhancements You can try these enhancements to hone your Drupal skills: Add reservation capability Add delivery request management Page 32 of 33

33 Going Further I hope this tutorial gave you an idea of Drupal s capabilities as a Web Application Development framework. As you might have seen, there are tons and tons of options available in whatever you have done in this tutorial. You can explore the options which you have not used to get familiar with the capabilities. The starter package that you have used in the tutorial is almost sufficient to develop very powerful web applications. There are some modules which are packaged but not enabled. You can explore some of them. There are tons of contributed modules to do almost everything that you would want to do. If you do not find a suitable module, you can easily write a module to do what you want to do. If you know some PHP programming, you can easily write modules. There are a lot of tutorials available on writing Drupal modules. If you want to customize the look and feel, you can do by writing some PHP and CSS code. You can even develop your own themes easily. There are a number of tutorials on theme development for Drupal. Drupal comes with built in tools to do performance tuning of the website. There is a lot of information on the internet on Drupal performance tuning. There are also a number of professional consultants who do Drupal performance tuning. Welcome to the World of Drupal!!! Page 33 of 33

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

Strategic Asset Tracking System User Guide

Strategic Asset Tracking System User Guide Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

History Explorer. View and Export Logged Print Job Information WHITE PAPER

History Explorer. View and Export Logged Print Job Information WHITE PAPER History Explorer View and Export Logged Print Job Information WHITE PAPER Contents Overview 3 Logging Information to the System Database 4 Logging Print Job Information from BarTender Designer 4 Logging

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation Rochester Institute of Technology Finance and Administration Drupal 7 Training Documentation Written by: Enterprise Web Applications Team CONTENTS Workflow... 4 Example of how the workflow works... 4 Login

More information

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT Table of Contents Creating a Webform First Steps... 1 Form Components... 2 Component Types.......4 Conditionals...

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

Online shopping store

Online shopping store Online shopping store 1. Research projects: A physical shop can only serves the people locally. An online shopping store can resolve the geometrical boundary faced by the physical shop. It has other advantages,

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

USERS MANUAL FOR OWL A DOCUMENT REPOSITORY SYSTEM

USERS MANUAL FOR OWL A DOCUMENT REPOSITORY SYSTEM USERS MANUAL FOR OWL A DOCUMENT REPOSITORY SYSTEM User Manual Table of Contents Introducing OWL...3 Starting to use Owl...4 The Logging in page...4 Using the browser...6 Folder structure...6 Title Bar...6

More information

Does the GC have an online document management solution?

Does the GC have an online document management solution? This FAQ contains: Web File Services definition Access web file services Create a WFS folder Upload a document Email a link to a document folder Create WFS subscription Cancel existing subscription Create

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

iview (v2.0) Administrator Guide Version 1.0

iview (v2.0) Administrator Guide Version 1.0 iview (v2.0) Administrator Guide Version 1.0 Updated 5/2/2008 Overview This administrator guide describes the processes and procedures for setting up, configuring, running and administering the iview Operator

More information

Open Source Content Management System JOOMLA

Open Source Content Management System JOOMLA Open Source Content Management System JOOMLA Swapnil S. Chafale MCA Department, GHRIIT Nagpur, (M.S.),India Swapnil.chafale@gmail.com Dr.V.M. Thakare S.G.B. Amravati University, Amravati (M.S.),India vilthakare@yahoo.co.in

More information

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Table of Contents Preface... viii User Administration... 1 Overview... 1 Administration

More information

Editor Manual for SharePoint Version 1. 21 December 2005

Editor Manual for SharePoint Version 1. 21 December 2005 Editor Manual for SharePoint Version 1 21 December 2005 ii Table of Contents PREFACE... 1 WORKFLOW... 2 USER ROLES... 3 MANAGING DOCUMENT... 4 UPLOADING DOCUMENTS... 4 NEW DOCUMENT... 6 EDIT IN DATASHEET...

More information

Table of Contents INTRODUCTION... 2 HOME PAGE... 3. Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG...

Table of Contents INTRODUCTION... 2 HOME PAGE... 3. Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG... Table of Contents INTRODUCTION... 2 HOME PAGE... 3 Announcements... 7 Personalize & Change Password... 8 Reminders... 9 SERVICE CATALOG... 11 Raising a Service Request... 12 Edit the Service Request...

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

Building Your First Drupal 8 Company Site

Building Your First Drupal 8 Company Site Building Websites with Drupal: Learn from the Experts Article Series Building Your First Drupal 8 Company Site by Todd Tomlinson July, 2014 Unicon is a Registered Trademark of Unicon, Inc. All other product

More information

Introduction to Drupal

Introduction to Drupal Introduction to Drupal Login 2 Create a Page 2 Title 2 Body 2 Editor 2 Menu Settings 5 Attached Images 5 Authoring Information 6 Revision Information 6 Publishing Options 6 File Attachments 6 URL Path

More information

Installing Drupal on Your Local Computer

Installing Drupal on Your Local Computer Installing Drupal on Your Local Computer This tutorial will help you install Drupal on your own home computer and allow you to test and experiment building a Web site using this open source software. This

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version Site Store Pro INSTALLATION GUIDE WPCartPro Wordpress Plugin Version WPCARTPRO INTRODUCTION 2 SYSTEM REQUIREMENTS 4 DOWNLOAD YOUR WPCARTPRO VERSION 5 EXTRACT THE FOLDERS FROM THE ZIP FILE TO A DIRECTORY

More information

Qualtrics Survey Tool

Qualtrics Survey Tool Qualtrics Survey Tool This page left blank intentionally. Table of Contents Overview... 5 Uses for Qualtrics Surveys:... 5 Accessing Qualtrics... 5 My Surveys Tab... 5 Survey Controls... 5 Creating New

More information

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0 NS DISCOVER 4.0 ADMINISTRATOR S GUIDE July, 2015 Version 4.0 TABLE OF CONTENTS 1 General Information... 4 1.1 Objective... 4 1.2 New 4.0 Features Improvements... 4 1.3 Migrating from 3.x to 4.x... 5 2

More information

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability Aras Corporation 2005 Aras Corporation. All rights reserved Notice of Rights All rights reserved. Aras Corporation (Aras) owns this document. No part of this document may be reproduced or transmitted in

More information

Using your Drupal Website Book 1 - Drupal Basics

Using your Drupal Website Book 1 - Drupal Basics Book 1 - Drupal Basics By Karl Binder, The Adhere Creative Ltd. 2010. This handbook was written by Karl Binder from The Adhere Creative Ltd as a beginners user guide to using a Drupal built website. It

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

econtrol 3.5 for Active Directory & Exchange Administrator Guide

econtrol 3.5 for Active Directory & Exchange Administrator Guide econtrol 3.5 for Active Directory & Exchange Administrator Guide This Guide Welcome to the econtrol 3.5 for Active Directory and Exchange Administrator Guide. This guide is for system administrators and

More information

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com.

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Terms of Use: All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Table of Contents 1- Introduction 3 2- Installing the theme

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

User Guide. Time Warner Cable Business Class Cloud Solutions Control Panel. Hosted Microsoft Exchange 2007 Hosted Microsoft SharePoint 2007

User Guide. Time Warner Cable Business Class Cloud Solutions Control Panel. Hosted Microsoft Exchange 2007 Hosted Microsoft SharePoint 2007 Chapter Title Time Warner Cable Business Class Cloud Solutions Control Panel User Guide Hosted Microsoft Exchange 2007 Hosted Microsoft SharePoint 2007 Version 1.1 Table of Contents Table of Contents...

More information

Safe internet for business use: Getting Started Guide

Safe internet for business use: Getting Started Guide Safe internet for business use: Getting Started Guide Table of Contents 1. Preface 1 2. Before You Install 2 2.1 Disabling Firewalls 2 2.2 About Accelerators 3 3. About Profiles 4 4. Installation and Initial

More information

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users Getting Started Getting Started with Time Warner Cable Business Class Voice Manager A Guide for Administrators and Users Table of Contents Table of Contents... 2 How to Use This Guide... 3 Administrators...

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

BusinessObjects Enterprise XI Release 2

BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of

More information

Agile ICT Website Starter Guides

Agile ICT Website Starter Guides Agile ICT Website Guide V1.0 1 Agile ICT Website Starter Guides 2 The purpose of this guide is to show you how to edit some of the basics of the website you have purchased through Agile ICT. The website

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

Where do I start? DIGICATION E-PORTFOLIO HELP GUIDE. Log in to Digication

Where do I start? DIGICATION E-PORTFOLIO HELP GUIDE. Log in to Digication You will be directed to the "Portfolio Settings! page. On this page you will fill out basic DIGICATION E-PORTFOLIO HELP GUIDE Where do I start? Log in to Digication Go to your school!s Digication login

More information

Virtual Communities Operations Manual

Virtual Communities Operations Manual Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

POINT OF SALES SYSTEM (POSS) USER MANUAL

POINT OF SALES SYSTEM (POSS) USER MANUAL Page 1 of 24 POINT OF SALES SYSTEM (POSS) USER MANUAL System Name : POSI-RAD System Release Version No. : V4.0 Total pages including this covering : 23 Page 2 of 24 Table of Contents 1 INTRODUCTION...

More information

Shop by Manufacturer Custom Module for Magento

Shop by Manufacturer Custom Module for Magento Shop by Manufacturer Custom Module for Magento TABLE OF CONTENTS Table of Contents Table Of Contents... 2 1. INTRODUCTION... 3 2. Overview...3 3. Requirements... 3 4. Features... 4 4.1 Features accessible

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

Kentico CMS 7.0 Intranet Administrator's Guide

Kentico CMS 7.0 Intranet Administrator's Guide Kentico CMS 7.0 Intranet Administrator's Guide 2 Kentico CMS 7.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

Version 1.0.0 USER GUIDE

Version 1.0.0 USER GUIDE Magento Extension Grid Manager Version 1.0.0 USER GUIDE Last update: Aug 13 th, 2013 DragonFroot.com Grid Manager v1-0 Content 1. Introduction 2. Installation 3. Configuration 4. Troubleshooting 5. Contact

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

Horizon Debt Collect. User s and Administrator s Guide

Horizon Debt Collect. User s and Administrator s Guide Horizon Debt Collect User s and Administrator s Guide Microsoft, Windows, Windows NT, Windows 2000, Windows XP, and SQL Server are registered trademarks of Microsoft Corporation. Sybase is a registered

More information

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

Access to Moodle. The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout.

Access to Moodle. The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout. Access to Moodle The first session of this document will show you how to access your Lasell Moodle course, how to login, and how to logout. 1. The homepage of Lasell Learning Management System Moodle is

More information

Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send

Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send 5. At Repeat Submission Filter, select the type of filtering used to limit repeat submissions by the same user. The following options are available: No Filtering: Skip to Step 7. DotNetNuke User ID: Do

More information

NJCU WEBSITE TRAINING MANUAL

NJCU WEBSITE TRAINING MANUAL NJCU WEBSITE TRAINING MANUAL Submit Support Requests to: http://web.njcu.edu/its/websupport/ (Login with your GothicNet Username and Password.) Table of Contents NJCU WEBSITE TRAINING: Content Contributors...

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo. Create e-commerce website Opencart Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.com Create e-commerce website Opencart What is opencart? Opencart

More information

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7 ECAT SWE Exchange Customer Administration Tool SWE - Exchange Customer Administration Tool (ECAT) Table of Contents About this Guide... 3 Audience and Purpose... 3 What is in this Guide?... 3 CA.mail Website...

More information

DarwiNet Client Level

DarwiNet Client Level DarwiNet Client Level Table Of Contents Welcome to the Help area for your online payroll system.... 1 Getting Started... 3 Welcome to the Help area for your online payroll system.... 3 Logging In... 4

More information

Basic Web Development @ Fullerton College

Basic Web Development @ Fullerton College Basic Web Development @ Fullerton College Introduction FC Net Accounts Obtaining Web Space Accessing your web space using MS FrontPage Accessing your web space using Macromedia Dreamweaver Accessing your

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

What s New in Version 10 Details for Web Essentials

What s New in Version 10 Details for Web Essentials What s New in Version 10 Details for Web Essentials TABLE OF CONTENTS Overview... 3 Dashboard Module... 3 General Changes... 3 New Proposal... 3 Create Proposal in Word... 5 Create New Proposal in Excel...

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Corporate Telephony Toolbar User Guide

Corporate Telephony Toolbar User Guide Corporate Telephony Toolbar User Guide 1 Table of Contents 1 Introduction...6 1.1 About Corporate Telephony Toolbar... 6 1.2 About This Guide... 6 1.3 Accessing The Toolbar... 6 1.4 First Time Login...

More information

Fixes for CrossTec ResQDesk

Fixes for CrossTec ResQDesk Fixes for CrossTec ResQDesk Fixes in CrossTec ResQDesk 5.00.0006 December 2, 2014 Resolved issue where the list of Operators on Category was not saving correctly when adding multiple Operators. Fixed issue

More information

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

Content Management System QUICK START GUIDE

Content Management System QUICK START GUIDE Content Management System QUICK START GUIDE Revised 03/10/11 TABLE OF CONTENTS Pg. 1... Logging In Pg. 2... Navigating to your site folder Pg. 2... The Folder Tree, Site Structure and Wire Frames Explained.

More information

Enterprise Toolbar User s Guide. Revised March 2015

Enterprise Toolbar User s Guide. Revised March 2015 Revised March 2015 Copyright Notice Trademarks Copyright 2007 DSCI, LLC All rights reserved. Any technical documentation that is made available by DSCI, LLC is proprietary and confidential and is considered

More information

Access Edit Menu... 2. Edit Existing Page... 3. Auto URL Aliases... 5. Page Content Editor... 7. Create a New Page... 17. Page Content List...

Access Edit Menu... 2. Edit Existing Page... 3. Auto URL Aliases... 5. Page Content Editor... 7. Create a New Page... 17. Page Content List... DRUPAL EDITOR Content Management Instructions TABLE OF CONTENTS Access Edit Menu... 2 Edit Existing Page... 3 Auto URL Aliases... 5 Page Content Editor... 7 Create a New Page... 17 Page Content List...

More information

Administration and Business Collaboration. User Manual

Administration and Business Collaboration. User Manual Administration and Business Collaboration User Manual Copyright 2007 by Eurekify Ltd., 8 Hasadna Street Raanana 43651, ISRAEL. All Rights Reserved. This document maybe used in its complete form only and

More information

This installation guide will help you install your chosen IceTheme Template with the Cloner Installer package.

This installation guide will help you install your chosen IceTheme Template with the Cloner Installer package. Introduction This installation guide will help you install your chosen IceTheme Template with the Cloner Installer package. There are 2 ways of installing the theme: 1- Using the Clone Installer Package

More information

Website in a box 2.0 Users Guide. Contact: enquiries@healthwatch.co.uk Website: www.healthwatch.co.uk/website-in-a-box

Website in a box 2.0 Users Guide. Contact: enquiries@healthwatch.co.uk Website: www.healthwatch.co.uk/website-in-a-box Website in a box 2.0 Users Guide Contact: enquiries@healthwatch.co.uk Website: www.healthwatch.co.uk/website-in-a-box Welcome to the new website in a box. We ve created a new, lighter, fresher and more

More information

User s Guide. Version 2.1

User s Guide. Version 2.1 Content Management System User s Guide Version 2.1 Page 1 of 51 OVERVIEW CMS organizes all content in a tree hierarchy similar to folder structure in your computer. The structure is typically predefined

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

More information

Spectrum Technology Platform. Version 9.0. Administration Guide

Spectrum Technology Platform. Version 9.0. Administration Guide Spectrum Technology Platform Version 9.0 Administration Guide Contents Chapter 1: Getting Started...7 Starting and Stopping the Server...8 Installing the Client Tools...8 Starting the Client Tools...9

More information

WatchDox Administrator's Guide. Application Version 3.7.5

WatchDox Administrator's Guide. Application Version 3.7.5 Application Version 3.7.5 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

MOODLE Installation on Windows Platform

MOODLE Installation on Windows Platform Windows Installation using XAMPP XAMPP is a fully functional web server package. It is built to test web based programs on a personal computer. It is not meant for online access via the web on a production

More information

user guide This user guide can be used as a whole manual, or sections, depending on the user s access permissions to AgendaOnline.

user guide This user guide can be used as a whole manual, or sections, depending on the user s access permissions to AgendaOnline. user guide This user guide can be used as a whole manual, or sections, depending on the user s access permissions to AgendaOnline. home page...3 General Features... 3 Other Features... 4 navigating agendas...5

More information

Hosted VoIP Phone System. Admin Portal User Guide for. Call Center Administration

Hosted VoIP Phone System. Admin Portal User Guide for. Call Center Administration Hosted VoIP Phone System Admin Portal User Guide for Call Center Administration Contents Table of Figures... 4 1 About this Guide... 6 2 Accessing the Hosted VoIP Phone System Administration Portal...

More information

Eucalyptus 3.4.2 User Console Guide

Eucalyptus 3.4.2 User Console Guide Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure

More information

Distributor Control Center Private Label/Channel Administrators

Distributor Control Center Private Label/Channel Administrators March 13, 2014 Distributor Control Center Private Label/Channel Administrators Version 2.6.3 Everyone.net Table of Contents Distributor Control Center... 1 1 The Distributor Control Center... 4 1.1 Introduction...

More information

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings... Post Installation Guide for Primavera Contract Management 14.1 July 2014 Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...

More information

How To Set Up Total Recall Web On A Microsoft Memorybook 2.5.2.2 (For A Microtron)

How To Set Up Total Recall Web On A Microsoft Memorybook 2.5.2.2 (For A Microtron) Total Recall Web Web Module Manual and Customer Quick Reference Guides COPYRIGHT NOTICE Copyright 1994-2009 by DHS Associates, Inc. All Rights Reserved. All TOTAL RECALL, TOTAL RECALL SQL, TOTAL RECALL

More information

Bank Account 1 September 2015

Bank Account 1 September 2015 Chapter 8 Training Notes Bank Account 1 September 2015 BANK ACCOUNTS Bank Accounts, or Bank Records, are typically setup in PrintBoss after the application is installed and provide options to work with

More information

Build it with Drupal 8

Build it with Drupal 8 Build it with Drupal 8 Comprehensive guide for building common websites in Drupal 8. No programming knowledge required! Antonio Torres This book is for sale at http://leanpub.com/drupal-8-book This version

More information

Appointment Scheduler

Appointment Scheduler EZClaim Appointment Scheduler User Guide Last Update: 11/19/2008 Copyright 2008 EZClaim This page intentionally left blank Contents Contents... iii Getting Started... 5 System Requirements... 5 Installing

More information

Administering Jive for Outlook

Administering Jive for Outlook Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4

More information

1. Manage your Group. 1. Log on to the CampusGroups platform.

1. Manage your Group. 1. Log on to the CampusGroups platform. 1 1. Manage your Group 1. Log on to the CampusGroups platform. 2. Upon logging in, select your club from the Groups drop-down (next to the Home icon) and click on the Manage button next to the group of

More information

User's Guide. Product Version: 2.5.0 Publication Date: 7/25/2011

User's Guide. Product Version: 2.5.0 Publication Date: 7/25/2011 User's Guide Product Version: 2.5.0 Publication Date: 7/25/2011 Copyright 2009-2011, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Contents GoAnywhere Services Welcome 6 Getting Started

More information

PHP+MYSQL, EASYPHP INSTALLATION GUIDE

PHP+MYSQL, EASYPHP INSTALLATION GUIDE PHP+MYSQL, EASYPHP INSTALLATION GUIDE EasyPhp is a tool to install and configure an Apache server along with a database manager, MySQL. Download the latest version from http://www.easyphp.org/ as seen

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

Webmail Instruction Guide

Webmail Instruction Guide Webmail Instruction Guide This document is setup to guide your through the use of the many features of our Webmail system. You may either visit www.safeaccess.com or webmail.safeaccess.com to login with

More information

How To Sync Between Quickbooks And Act

How To Sync Between Quickbooks And Act QSalesData User Guide Note: In addition to this User Guide, we have an extensive Online Video Library that you can access from our website: www.qsalesdata.com/onlinevideos Updated: 11/14/2014 Installing

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

ScriptLogic File System Auditor User Guide

ScriptLogic File System Auditor User Guide ScriptLogic File System Auditor User Guide FILE SYSTEM AUDITOR I 2005 by ScriptLogic Corporation All rights reserved. This publication is protected by copyright and all rights are reserved by ScriptLogic

More information

Table of Contents INTRODUCTION...2 HOME PAGE...3. Announcements... 6 Personalize... 7 Reminders... 9 Recent Items... 11 SERVICE CATALOG...

Table of Contents INTRODUCTION...2 HOME PAGE...3. Announcements... 6 Personalize... 7 Reminders... 9 Recent Items... 11 SERVICE CATALOG... Table of Contents INTRODUCTION...2 HOME PAGE...3 Announcements... 6 Personalize... 7 Reminders... 9 Recent Items... 11 SERVICE CATALOG...12 REQUEST...14 Request List View... 15 Creating a New Incident...

More information

GETTING STARTED WITH D2L

GETTING STARTED WITH D2L GETTING STARTED WITH D2L Quick Start Guide v.9.2.1 ecampus This guide provides tips for users new to using the D2L Learning Environment. It discusses how to navigate the main areas and how to change your

More information

Using the Content Management System 05-02-12

Using the Content Management System 05-02-12 Using the Content Management System 05-02-12 Using the Content Management System Introduction 2 Logging In 3 Using the Editor 4 Basic Text Editing 5 Pasting Text 7 Adding Hyperlinks 8 Adding Images 9 Style

More information