mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
24 lines
272 B
PHP
24 lines
272 B
PHP
<?php
|
|
|
|
/**
|
|
* Comment form used to make comments
|
|
*
|
|
* @package comments
|
|
*/
|
|
|
|
class CommentForm extends Form {
|
|
|
|
private static $ownerClass = false;
|
|
/**
|
|
* Returns a create comment form
|
|
*
|
|
* @return Form
|
|
*/
|
|
function __construct($controller, $name) {
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|