ACC SHELL
<?php
/**
* This file is part of the Nette Framework (http://nette.org)
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
*/
namespace Nette\Forms;
use Nette;
/**
* Defines method that must be implemented to allow a control to submit web form.
*
* @author David Grudl
*/
interface ISubmitterControl extends IControl
{
/**
* Gets the validation scope. Clicking the button validates only the controls within the specified scope.
* @return mixed
*/
function getValidationScope();
}
ACC SHELL 2018