PHP Classes

YACS PHP Comment System: Manage user comments published on Web site pages

Recommend this page to a friend!
     
  Info   Example   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 49 All time: 10,738 This week: 44Up
Version License PHP version Categories
yacs 1.0GNU General Publi...5Content management, Design Patterns
Description 

Author

This package can manage user comments published on Web site pages.

It implements an application that provides a Web interface to allow Web site users to submit comments about posts published on the site pages.

The application allows the users to perform several types of operations on the comments that they submit to the site.

Currently, it can:

- Display a list of posts on a Web page

- Display the comments submitted by a user about a post

Picture of Virgilio lino
  Performance   Level  
Innovation award
Innovation award
Nominee: 5x

Winner: 2x

 

Example

<?php
/**
 * todos in order of importance:
 * 0. composer.json. MyApp is one project and Core is the framework. Both projects should be separated
 * 1. ajax security
 * 2. dependency injection -> symfony(ok i know i don't want to use frameworks)
 * 3. postEngine -> when we have dependency injection
 * 4. autoloader -> register namespaces
 * 5. extract viewModel concern from View
 * 6. handle subviews, property to say its a subview and not let app be rendered directly
 * just as a subcall
 * 7. posts and comments templates share a lot of functionalities, boths templates should extend
 * from a generic one
 * 8. model should be comunicated from backend to js.
 * 9. And on js there should be an mvc architecture. at the moment it's everything mixed on class
 * ajaxMaster. this is not good
 * 10. most browsers implement json_parse functionality. for the others i should use some library
 * to add this functionality
 * 11. use less for css
 * 12. avoid double submitting of addpost form
 * 13. email obfuscator
 * 14. validation errors near to the field with error, at the moment, all messages
 * error and success are beign displayed on the pot. having several comments, the user
 * will not see the messages.
 * 15. on every new comment i'm updating all the posts and comments. we should just update this comment
 *
 */
use Lino\Yacs\Core\Request\HttpRequest;
use
Lino\Yacs\Core\Response\HttpResponse;
use
Lino\Yacs\Core\Application\ApplicationFactory;
use
Lino\Yacs\Core\Application\Config\WebConfig;
require
'../src/Lino/Yacs/Autoloader.php';
try {
   
$autoloader = new \Lino\Yacs\Autoloader();
   
$responseHandler = new HttpResponse();
   
$applicationFactory = new ApplicationFactory(
        new
WebConfig(), $responseHandler, ApplicationFactory::VAL_WEB_ENVIRONMENT,
       
$autoloader->getAppDir(), $autoloader->getAppPrefix(), 'MyApp'
   
);
   
$myWebApplication = $applicationFactory->create();
   
$myWebApplication->run(new HttpRequest());

} catch (
Exception $e) {
    echo
$e->getMessage();
}




Details

Instructions - Yacs 0.1 - Yet Another Comments System 1. create database 2. import the file dbimport.sql 3. configurate db settings in src/Lino/Yacs/MyApp/application.conf 4. point the browser to /Public/index.php Please take a look at /Public/index.php comment for the list of todos in order of importance. The code have been tested just with Linux/Chrome and Linux/Firefox. Many thanks, Virgilio Lino virgilio@mail.de

  Files folder image Files (62)  
File Role Description
Files folder imagePublic (1 file, 1 directory)
Files folder imagesrc (1 directory)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file dbimport.sql Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README Doc. Documentation

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 100%
Total:49
This week:0
All time:10,738
This week:44Up