* @param $requestInstance An instance of a class with an Requestable interface
* @param $responseInstance An instance of a class with an Responseable interface
* @return void
+ * @todo 0% done
*/
public function execute (Requestable $requestInstance, Responseable $responseInstance) {
$this->partialStub("Please implement this method.");
*
* @param $userInstance A user class
* @return $companyInstance Prepared company instance
+ * @todo Add functionality if user participates in a company
*/
public final static function createShippingCompany (ManageableAccount $userInstance) {
// Get new instance
* Checks wether the current user in registry is the company founder
*
* @return $isFounder Wether the current user is the company founder
+ * @todo Check if user is company founder
*/
public function ifUserIsFounder () {
// Default is not the founder
* Checks wether the current user in registry is the company owner
*
* @return $isOwner Wether the current user is the company owner
+ * @todo Check if user is company owner
*/
public function ifUserIsOwner () {
// Default is not the owner
* @param $requestInstance An instance of a class with an Requestable interface
* @param $responseInstance An instance of a class with an Responseable interface
* @return void
+ * @todo 0% done
*/
public function execute (Requestable $requestInstance, Responseable $responseInstance) {
$this->partialStub("Please implement this method.");
* @throws ContainerMaybeDamagedException If the container item
* is missing the indexes
* 'name' and/or 'value'
+ * @deprecated
*/
public function loadPersonellList ($idNumber) {
// Cleared because old code
*
* @param $requestInstance An instance of a Requestable class
* @return $userInstance An instance of this user class
+ * @todo Add more ways of creating user instances
*/
public final static function createMemberByRequest (Requestable $requestInstance) {
// Determine if by email or username
* @param $requestInstance An instance of a class with an Requestable interface
* @param $responseInstance An instance of a class with an Responseable interface
* @return void
+ * @todo 0% done
*/
public function execute (Requestable $requestInstance, Responseable $responseInstance) {
$this->partialStub("You have to implement me.");
* @param $requestInstance An instance of a class with an Requestable interface
* @param $responseInstance An instance of a class with an Responseable interface
* @return void
+ * @todo 0% done
*/
public function execute (Requestable $requestInstance, Responseable $responseInstance) {
// Implement this!
* Initiates the CAPTCHA
*
* @return void
+ * @todo 0% done
*/
public function initiateCaptcha () {
$this->partialStub("Please implement this method.");
* Render the CAPTCHA code
*
* @return void
+ * @todo 0% done
*/
public function renderCode () {
$this->partialStub("Please implement this method.");
* Flush the content out,e g. to a template variable
*
* @return void
+ * @todo 0% done
*/
public function flushContent () {
$this->partialStub("Please implement this method.");
* Flush the content out,e g. to a template variable
*
* @return void
+ * @todo 0% done
*/
public function flushContent () {
$this->partialStub("Please implement this method.");
* Deliver email to the recipient(s)
*
* @return void
+ * @todo 0% done
*/
public function deliverEmail() {
$this->partialStub("You have to implement this method.");
* Send notification to the admin
*
* @return void
+ * @todo 0% done
*/
public function sendAdminNotification() {
$this->partialStub("You have to implement this method.");
*
* @param $action The action or configuration entry plus prefix the user wants to perform
* @return $hasRequired Wether the user has the required points
+ * @todo Finish loading part of points
*/
public function ifUserHasRequiredPoints ($action) {
// Default is that everyone is poor... ;-)
* @param $force Wether we shall force the output or abort if headers are
* already sent with an exception
* @return void
+ * @todo Add support for fatal messages in image response
* @throws ResponseHeadersAlreadySentException Thrown if headers are
* already sent
*/
*
* @param $requestInstance An instance of a Requestable class
* @return $userInstance An instance of this user class
+ * @todo Add more ways over creating user classes
*/
public final static function createMemberByRequest (Requestable $requestInstance) {
// Determine if by email or username