# VideoPlugin dökümanı
1- Resize
2- Time Clip
3- Crop
temperature_control.bed.thermistor EPCOS100K | |
temperature_control.bed.designator B | |
temperature_control.bed.enable true | |
temperature_control.bed.set_and_wait_m_code 190 | |
temperature_control.bed.set_m_code 140 | |
temperature_control.bed.heater_pin 1.23 | |
temperature_control.bed.bang_bang true | |
temperature_control.bed.thermistor_pin 0.25 | |
temperature_control.hotend2.heater_pin 2.5 |
Controllers are classes that are responsible for accepting user input and managing interactions between models, libraries, and views. Typically, they will ask a model for data, and then return a view that presents that data to the user. The usage of controllers is the most common method of implementing application logic in modern web-development.
All routes (links, urls) are explicitly defined in Laravel. This means that controller methods that have not been exposed through route registration cannot be accessed. It's possible to automatically expose all methods within a controller using controller route registration. In this application, automatic controller routing is used. Usage:
file: application/routes.php
<?php | |
class Auth extends Laravel\Auth { | |
} | |
class Asset extends Laravel\Asset { | |
public static function add($name, $source, $dependencies = array(), $attributes = array()) { | |
<?php | |
abstract class Command { | |
abstract public function unExecute (); | |
abstract public function Execute (); | |
} | |
class concreteCommand extends Command { | |
private $operator,$operand,$calculator; | |
public function __construct ($calculator,$operator,$operand) { | |
$this->operator = $operator; | |
$this->operand = $operand; |