Review SchoolBoard - School Management System (Project Management Tools)

SchoolBoard - School Management System (Project Management Tools)
Review SchoolBoard - School Management System (Project Management Tools)

SchoolBoard - School Management System (Project Management Tools) Description:


School Board provides easy access for teachers, parents and students to day-to-day information about school and learning process. Gradebook, timetable, attendance, internal messaging, adjustable grading scale and much more School Board gives you to help and support you.

School Board built with idea about each person involved into school.

School Board available in:
English English Spanish

Admin can manage all aspects of school:

Manage attendance of students    Manage attendance of students
Just select needed lesson and set status for student
Gradebook    Gradebook
Easily create assignments and add marks for each student

Incidents    Incidents
Track all incidents in your school
Scheduling    Scheduling
Create personal scheduling for each teacher

Manage students, parents and teachers    Manage students, parents and teachers
And provide easy access for them to collaborate
Adjustable semesters    Adjustable semesters
Adjust semesters according to your study plan

Adjustable grading scale    Adjustable grading scale
Grading scale for any type of school or educational institution
Fees    Fees
Charge your students to pay any fees

Internal group comunication    Internal group comunication
Discuss any topics with teachers, parents and students.
Subjects    Subjects
Create subjects for your school and assign them to teachers

Classrooms    Classrooms
Track scheduling and availability of each classroom
Import data    Import data
Import students, parents and teachers from external CSV file

internal group comunication    Internal group comunication
Discuss any topics with teachers, parents and students.
   Subjects
Create subjects for your school and assign them to teachers

Students groups    Students groups
Group students to groups to manage them easily
Multilingual    Multilingual
Supports English and Spanish, other languages are coming soon

Teachers can:

Attendance    Attendance of students
Select your lesson, needed student and set status
Scheduling    Scheduler
Create lesson at what date and time do you need

Incidents    Incidents
Save incidents what occurred during your lesson
Gradebook    Gradebook
Easily create assignments and set marks to all your students

Messages    Messaging
Communicate with everyone in your school

Features for parents:

Attendance    Attendance
Check attendance of your child in each lesson
Scheduling    Scheduling
View feature lessons of your child

Gradebook    Gradebook
Know progress of your child and their marks
Incidents    Incidents
Know what happened with your child during lessons

Messages    Messaging
Communicate with teachers and another parents in your school
Payments    Payments
View and pay all fee charged to your child

Students can:

Updating…..

School Board supports any devices with help of responsive design

Fully responsive design

Documentation

Documentation for School Board Installation guide

History

 7 Jul 2013 - Version 1.2 + added Spanish + added internal communication between teachers, students and parents + added fees management + added ability to import students, parents and teachers from CSV files + added ability to change grades according to your school or add new one if you need  12 Jul 2013 - Version 1.1 + design changed to responsive, so now you can use School Board in any devices as you want 


Buy it Now

Review Vertical Elan - Responsive CSS3 Vertical Menu (Navigation and Menus)

Vertical Elan - Responsive CSS3 Vertical Menu (Navigation and Menus)
Review Vertical Elan - Responsive CSS3 Vertical Menu (Navigation and Menus)

Vertical Elan - Responsive CSS3 Vertical Menu (Navigation and Menus) Description:


CSS3 mega drop down responsive menu for your web site. You can change font size, font color, background color and other options. Menu has 5 columns grid and work on all major browsers. But animation and some feauters on IE do not work.

Changelog

Version v 1.0
Version v 2.0 (added collapse js code)
Version v 2.1 (added toogle function)


If you like it please rate it.


See also





Buy it Now

Review Ajax Full Featured Calendar (Calendars)

Ajax Full Featured Calendar (Calendars)
Review Ajax Full Featured Calendar (Calendars)

Ajax Full Featured Calendar (Calendars) Description:


This is a complete solution for jQuery fullcalendar plugin and can be used on other calendars due to the PHP class. Most admin themes on themeforest use this plugin and they are static updated, with this solution now they can get dynamic. It’s possible due to the php class and jQuery plugin that this product contains in two demo versions. The PHP class and the js plugin retrieves all events to the calendar and the events are updated on drag and on resize without page reload or redirects and on each event click is displayed the event information that can be edited, exported or deleted.

Features:

  • All jQuery Fullcalendar Features
  • Responsive
  • Add, Edit, Delete, View, Export, Update Calendar Events
  • Update Events on Resize
  • Update Events on Drag
  • PHP & JS Versions With PHP Class
  • jQuery plugin [with 44 customizable options]
  • Easy to use and implement
  • UTF-8 Ready
  • Demo Included
  • Documentation Included

Credits:

What’s new in version 1.5?

  • Added Export to icalendar format
  • Added quicksave (add event by a click) feature options
  • Improved plugin and php class and improved performance


Buy it Now

Review Mega Class Database (Oracle) v 1.0 (Database Abstractions)

Mega Class Database (Oracle) v 1.0 (Database Abstractions)
Review Mega Class Database (Oracle) v 1.0 (Database Abstractions)

Mega Class Database (Oracle) v 1.0 (Database Abstractions) Description:


Mega Class Database (Oracle) v 1.0


Use every feature of Oracle in PHP .

Main Features:

1. Oracle Compatible.
2. Easy to Use, clean, easy to understand code.
3. Access Oracle Database without any knowledge of Oracle.
4. Uses Associative array of data to insert and update rows in the database table.
5. Optional escape string feature to avoid Oracle Injections.
6. Automatically Creates Prepared Statements.
7. Select Rows, Columns, Variables with one-liners.
8. Easy Select, Insert, Update, Delete, filtered
9. Properly documented with examples and comments.
10. Small Size.
11. Attach Fully Documented.

Functions

 // Connect to server sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false); //-----------------------------------------------------------------+ sql_query($query = ''); // Build sql statement from array for select and select distinct statements //-----------------------------------------------------------------+ // Build LIMIT query sql_query_limit($query, $total, $offset = 0); //-----------------------------------------------------------------+ // Fetch current row sql_fetchrow($query_id); //-----------------------------------------------------------------+ //Possible query values: SELECT, SELECT_DISTINCT function sql_build_query($query, $array); //-----------------------------------------------------------------+ // Run more than one insert statement. sql_multi_insert($table, &$sql_ary); //-----------------------------------------------------------------+ // Escape string used in sql query sql_escape(); //-----------------------------------------------------------------+ // Gets some information about the specified table. get_table_status($table_name); //-----------------------------------------------------------------+ // Gets the exact number of rows in a specified table. get_row_count($table_name); //-----------------------------------------------------------------+ //Gets the estimated number of rows in a specified table. get_estimated_row_count($table_name); //-----------------------------------------------------------------+ // display sql error page sql_error(); //-----------------------------------------------------------------+ // Build IN or NOT IN sql comparison string, uses <> or = on single element sql_in_set($field, $array, $negate = false, $allow_empty_set = false); //-----------------------------------------------------------------+ // Correctly adjust LIKE expression for special characters sql_like_expression($expression); //-----------------------------------------------------------------+ // Version information about used database sql_server_info(); //-----------------------------------------------------------------+ // Return number of affected rows sql_affectedrows(); //-----------------------------------------------------------------+ // Seek to given row number sql_rowseek($rownum, &$query_id); //-----------------------------------------------------------------+ // Get last inserted id after insert statement sql_nextid(); //-----------------------------------------------------------------+ // Free sql result sql_freeresult($query_id = false); //-----------------------------------------------------------------+ // close sql connection sql_close(); //-----------------------------------------------------------------+ 

Usage

 // define class file in your script. define('IN_MEGA_DB', true);  // Include class file in your script. include('mega.class.database.php');  $dbhost      = ''; $dbport      = ''; $dbname      = ''; $dbuser      = ''; $dbpasswd    = ''; $tableprefix = '';  $db     = new dbal_oracle();  // connect Database $con = $db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport); 


Version History

  v1.0 Initial version. 


Buy it Now

Review Email Verify : Validate email addresses (Add-ons)

Email Verify : Validate email addresses (Add-ons)
Review Email Verify : Validate email addresses (Add-ons)

Email Verify : Validate email addresses (Add-ons) Description:


Email Verify is a PHP script that allows you to verify email addresses without storing anything in any databases. It will send users an email requiring them to click a link to verify their email before their email is added to whatever you want to add it to.

Email Verify uses secure SHA512 hashing validate email addresses meaning users cannot simply hotlink to the verification page and you can easily customise this script to work with your existing registration system or easily add verified emails to a newsletter database. This is programmed in an entirely functional manor allowing you to easily use the functions included in this script anywhere you want, these functions are fully documented.

This script includes a full HTML example using HTML5 email validation alongside a Javascript validation fallback for older browsers. All data is sanitised to prevent XSS attacks.

This is how it works:
  1. The user enters in their email addresses.
  2. The will be sent an email with a link to confirm their email.
  3. The user will click this link.
  4. You may then include a form offering the user to choose a username and a password or simply add their email to a newsletter database.

Note that you will require PHP 5.1.2+ for this plugin to work as it uses the PHP hash function to ensure the system is fully secure. This uses the stock PHP mail function, but you can easily change this function to use whatever system you prefer.



Buy it Now

Review Lively Validator (Forms)

Lively Validator (Forms)
Review Lively Validator (Forms)

Lively Validator (Forms) Description:


Lively Validator is the jQuery plugin that validates form input data. It checks that only valid data is submitted, and also provides a user-friendly, responsive and lively interface to guide users as they fill out a form. With a selection of over 30 different validation types including required, confirm, alphabetic, credit card numbers, minimum and maximum number or characters, file size, file type and dates.

The plugin displays two types of messages: guides and alerts. Both are displayed in stylish tooltips whenever a user points their mouse over a form’s field. Guides are displayed when a field is empty, and contains instructions on how to fill the form field. Alert messages are displayed whenever a field is incorrectly filled, and warn the user about a problem.

FEATURES

Over 30 validation rules for different types of data including numbers, files, dates and strings. You can easily extend the plugin with their own custom rules.

Both client-side (the jQuery plugin) and server-side (a PHP class) validation supported.

Stylish tooltips for instant feedback. The look is fully customizable using CSS.

HTML5 aware – recognizes and supports all the new HTML5 form input types and attributes.

Two types of feedback messages: Guides for helpful instructions before filling, and Alerts for errors messages. Each validation rule has its own Guide and Alert message, which you can change and customize for all fields at once, or just one form field.

Allows multiple validation rules to be specified on the same element.

VALIDATION TYPES

  • required
  • confirm
  • min
  • max
  • STRINGS

  • alphabetic
  • alphanumeric
  • color
  • credit card number
  • email address
  • maximum character length
  • minimum character length
  • numeric text
  • telephone numbers
  • URLs
  • NUMBERS

  • age
  • maximum number
  • minimum number
  • number
  • FILES

  • document
  • file extension
  • file mime subtype
  • file mime type
  • image files
  • maximum file size
  • minimum file size
  • DATES

  • date
  • HTML5 datetime
  • HTML5 datetimeLocal
  • maximum (latest) date
  • minimum (earliest) date
  • HTML5 month
  • HTML5 time
  • HTML5 week


  • Buy it Now

    Review Responsive HTML5 Video Player & Gallery (Media)

    Responsive HTML5 Video Player & Gallery (Media)
    Review Responsive HTML5 Video Player & Gallery (Media)

    Responsive HTML5 Video Player & Gallery (Media) Description:


    This is Responsive HTML 5 Video Player with/without gallery. You can use player without gallery with only one video, or you can build your own gallery with thumbnails, titles and descriptions. Number of videos is unlimited. Player look is customisable via CSS, so you can easily customize colors and adjust it to your needs. Player is resizeable so it fits perfectly in every website design.

    Features

    • easy setup
    • responsive
    • optional gallery
    • multiple themes included
    • click & drag (touch) to control gallery
    • mobile friendly (iPhone, iPad, android)
    • 100% vector icons, retina-ready
    • all browsers compatible
    • multiple instances: you can insert more players in same page
    • optional logo: you can add your logo as image (.jpg, .png). Logo position can be in bottom-left corner, bottom-right ot top-right corner.
    • optional preview image: if you want your player to be paused when page loads, you can set preview image
    • autohide controls: you can choose after how much seconds player controls will disappear
    • hide / show gallery with playlist button (with this functionality you can “stretch” player over gallery to have better view for video, as well as “shrink” player to see gallery menu again to choose videos)
    • autoplay: on/off
    • complete volume control
    • optional share menu: facebook, twitter, myspace, wordpress, linkedin, flickr, blogger, delicious, mail
    • optional embed code: for visitors to embed your player in their sites
    • information window with HTML formatted text (it means you can insert links, change fonts, sizes with standard HTML tags)
    • rewind
    • tooltip for time
    • tooltip for volume percentage
    • fullscreen support (when not supported real fullscreen it switches to full browser support)
    • double click to enter/exit fullscreen
    • SPACE key play/pause
    • ESCAPE key to exit fullscreen
    • installation instructions included

    Updates

    5.6.2013.
    • IE9, IE10 scrollbar appearance bug fixed
    10.5.2013.
    • Major code improvements, IE9, IE10 bugs fixes, removed xml, added more player options.

    Credits:

    Thanks to Dorde Pivnicki

    You may also like…

    HTML5 Responsive Video Player & Advertising

    3 in 1 – Video players pack Youtube / Vimeo / Flv / Mp3 / Image / Advertising

    VIMEO / YOUTUBE / FLV VIDEO PLAYER WITH PLAYLIST

    Flag Counter



    Buy it Now