Download presentation
Presentation is loading. Please wait.
Published byJustin Bond Modified over 9 years ago
1
Clay SchumacherJosh WeisskopfCory Simon Advisor: Tien Nguyen Reiman Gardens Plant Database Dec 08-06
3
Reiman Gardens ◦ Occupies 14 acres on the ISU campus ◦ Indoor and outdoor gardens, five greenhouses ◦ Keep detailed records of all plants in the gardens Existing Database System ◦ Difficult to use ◦ Isolated from other software and equipment ◦ Inaccessible to the public
4
Create a new plant database for Reiman Gardens: ◦ Primary: Plant record management Friendly user interface Low Cost ◦ Secondary: Create files for label making machines Allow public access Print forms for use in the gardens
5
The product shall store nine types of records: Accession, Genus, Species, Supplier, Location, Reference, Family, Photo, and Propagation The product shall allow users to create, edit, view, and search records The product shall have three user groups: administrator, staff, and public The product shall export files containing plant information to be printed by label makers
8
Shared Drive Database ◦ Similar to existing system, host database on the existing shared drive at Reiman Gardens Local Server ◦ Use a web based approach hosted on a new server at Reiman Gardens.
9
Web based system hosted off site ◦ Capable of satisfying all requirements ◦ Familiar interface for users ◦ Tested and supported design LAMP server solution stack ◦ Linux operating system ◦ Apache web server ◦ MySQL database management system ◦ PHP scripting language
10
Positive Plant record management Relatively low cost Customized user interface Public access Customized file output Negative -Cost: previous system was free -Capability: commercial systems have more functionality
11
HTTP Server PHP Database Queries Responses Server Web Browser Client Label Makers Public User Registered User
12
Initially had four members – scheduled 135 hours for each 1st Semester, 90 hours for each 2nd semester Created WBS for each semester and assigned tasks to each group member ◦ Major headings: Project Plan Design Document Implementation User Manual Testing
13
We had produced a basic system design ◦ Ready for development Total hours to this point: ◦ 538 (out of 540 scheduled) ◦ Rolando: 123 ◦ Clay: 134 ◦ Cory: 135 ◦ Josh: 146 Planned to finish implementation by Thanksgiving
15
Input: HTTP Page Requests Output: HTML, CSS, JavaScript, and Labelmaker Files
16
Login Page Welcome Page Help Page Search Results Page Model Index Page Add Record Page View Record Page Edit Record Page
18
CakePHP is a rapid development framework for PHP ◦ Based on Model-View-Controller architecture pattern ◦ Easy installation and no configuration required ◦ Active community with useful forums ◦ Object oriented design
19
Species Genera Families Suppliers Gardens Users Nativities Accessions Alternative Names Removals Propagations References
20
All Models inherit from AppModel class ◦ Defines defaults that can be overridden Each class defines key fields and methods ◦ Validation rules and error messages ◦ Identifying field for auto complete ◦ Input Cues ◦ Related models ◦ Visible fields and related models ◦ Get display name function – for special names CakePHP provides functions through model classes for retrieving/saving info from the DB
21
AppController Superclass ◦ Contains index, add, edit, and view ◦ Contains search and autocomplete functions ◦ Verifies authentication, access control Additional Actions: ◦ Accessions and Gardens: Export to Excel ◦ Species: Upload Image, Remove Image, Full Image ◦ Users: Login, Logout, Register, Reset Password Unique Controllers ◦ Species: Overwrites add, edit, view ◦ Genus: Overwrites add, edit
22
Classes containing useful functions for controllers Prebuilt components ◦ Email: used by users controller ◦ Auth, Session, Cookie: used for authentication Custom components ◦ Upload: used for uploading images
23
Views are the interface Layout ◦ Defined in one file and used everywhere ◦ Header Navigation, Search, Breadcrumbs ◦ Footer Content ◦ Individually defined for each controller and action ◦ Sandwiched between header and footer CSS ◦ Defined in one file and used everywhere ◦ Dictates cosmetics (positioning, color scheme, etc.)
24
Helpers ◦ Classes that provide presentation logic ◦ Standard CakePHP helpers: HTML, Javascript, Form, Ajax, and Pagination ◦ Additional helpers Breadcrumbs and Excel.xls generation ◦ Custom helpers Add, edit, view forms and cosmetic markup Elements ◦ Reusable chunks of markup (mini-views) ◦ Custom element standardizes search results, indices
25
Label maker software accepts Excel files containing data Fields: ◦ Accession Number ◦ Common Name, Genus, Specific Epithet ◦ Variety, Subspecies, or Forma ◦ Cultivar, Family ◦ Nativity ◦ Quantity, Size ◦ Source, Date Planted, Notes
27
Subversion ◦ Version Control Trac ◦ Project management Wiki Issue tracking Activity log Apache ◦ Web Server Samba ◦ File Sharing
28
A basic process was followed for each team member to accomplish a task
29
Alpha Release – November 9 ◦ Basic functionality Beta Release – December 3 ◦ Feature complete Final Release – December 15
30
Imported taxa from USDA database to create a large load on the system Over 400 families, 4000 genera, 38000 species Highlighted deficiencies in code ◦ Areas that weren’t limiting query results Beneficial side-effect: system is pre- populated with taxa
31
Public users cannot edit any database information Users must be registered by an administrator Authenticated users use SSL for all data transfers Authentication verified before any controller action is executed Data Sanitization – CakePHP Component ◦ Remove any HTML, PHP, Javascript, or SQL in input
32
One of the most important functions for the database is the search CakePHP provides model functions to search the database ◦ Powerful, but unfamiliar – learning curve A challenge to search for records of one model that are related to another
33
Basic search strings match as “and” terms delimited by spaces ◦ To match a record must contain a match for each term (in any field) Which related models to search for each model is specified in the model class User has finer grain control over results displayed – still refining Code is modular for search and index ◦ Search uses index of each model being searched ◦ Use a common view element to display results
34
Individual Accession or all Accessions from a garden can be exported to an.xls file File serves dual purpose ◦ It can be printed and serve as a hardcopy report ◦ It is compatible with label-making software
36
Currently all requirements are met The project is very nearly complete ◦ Finish Search ◦ Create Help Page ◦ Visual touch-ups Expect to be finished by next week
37
Evaluated progress, reduced scope with client approval on November 13 Redesigned photo requirements ◦ Previous requirement: Independent model containing pictures associated with Gardens, Species, and Accessions ◦ Reduced requirement Photo field in Species model only
40
Spring: 538 Fall: 658
41
BCWS: 900 hours @ $10/hour = $9,000 ACWP: 1,196 @ $10/hour = $11,960 BCWP: $9000 x 95% = $8,550 Cost Variance: 9,000 – 11,960 = -2,960 Schedule Variance: 8,550 – 9,000 = -450 Cost Performance: 9,000/11,960 = 0.753 Schedule Performance: 8,550/9,000 = 0.95
42
Lost team member prior to implementation phase ◦ Chose to proceed as planned Significantly more hours ◦ Should have reassessed requirements and reduced project scope Could have dropped public access and used a single log on system Selected CakePHP during design phase ◦ This was the right decision ◦ Should have created CakePHP prototype during design phase Would have helped the team understand capabilities and limitations CakePHP is complicated, would have jumpstarted our development
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.