Prado\Web\UI\WebControls\THtmlArea::getScriptDeploymentPath PHP 메소드

getScriptDeploymentPath() 보호된 메소드

Gets the editor script base URL by publishing the tarred source via TTarAssetManager.
protected getScriptDeploymentPath ( ) : string
리턴 string URL base path to the published editor script
    protected function getScriptDeploymentPath()
    {
        $tarfile = Prado::getPathOfNamespace('Vendor.pradosoft.prado-tinymce3.tiny_mce', '.tar');
        $md5sum = Prado::getPathOfNamespace('Vendor.pradosoft.prado-tinymce3.tiny_mce', '.md5');
        if ($tarfile === null || $md5sum === null) {
            throw new TConfigurationException('htmlarea_tarfile_invalid');
        }
        $url = $this->getApplication()->getAssetManager()->publishTarFile($tarfile, $md5sum);
        $this->copyCustomPlugins($url);
        return $url;
    }