本文整理汇总了PHP中T3Path::updateUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP T3Path::updateUrl方法的具体用法?PHP T3Path::updateUrl怎么用?PHP T3Path::updateUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类T3Path
的用法示例。
在下文中一共展示了T3Path::updateUrl方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: compile
public static function compile($source, $path, $todir, $importdirs)
{
// call Less to compile
$parser = new lessc();
$parser->setImportDir(array_keys($importdirs));
$parser->setPreserveComments(true);
$output = $parser->compile($source);
// update url
$arr = preg_split(T3Less::$rsplitbegin . T3Less::$kfilepath . T3Less::$rsplitend, $output, -1, PREG_SPLIT_DELIM_CAPTURE);
$output = '';
$file = $relpath = '';
$isfile = false;
foreach ($arr as $s) {
if ($isfile) {
$isfile = false;
$file = $s;
$relpath = T3Less::relativePath($todir, dirname($file));
$output .= "\n#" . T3Less::$kfilepath . "{content: \"{$file}\";}\n";
} else {
$output .= ($file ? T3Path::updateUrl($s, $relpath) : $s) . "\n\n";
$isfile = true;
}
}
return $output;
}
示例2: compileCss
function compileCss($path, $topath = '')
{
$app = JFactory::getApplication();
$theme = $app->getUserState('vars_theme');
$realpath = realpath(JPATH_ROOT . '/' . $path);
// check path
if (!is_file($realpath)) {
//if (!JPath::check ($realpath)){
return;
}
// Get file content
$content = JFile::read($realpath);
// remove comments
$content = preg_replace('!/\\*[^*]*\\*+([^/][^*]*\\*+)*/!', '', $content);
// split into array, separated by the import
$arr = preg_split('#^\\s*@import\\s+"([^"]*)"\\s*;#im', $content, -1, PREG_SPLIT_DELIM_CAPTURE);
// check and add theme less if not is theme less
if ($theme && !preg_match('#themes/#', $path)) {
$themepath = 'themes/' . $theme . '/' . basename($path);
if (is_file(T3_TEMPLATE_PATH . '/less/' . $themepath)) {
$arr[] = $themepath;
$arr[] = '';
}
}
// variables & mixin
$vars = $this->getVars();
// add vars
//$this->setImportDir (array(dirname($realpath), T3_TEMPLATE_PATH.'/less/'));
$importdirs = array();
// compile chuck
$import = false;
$output = '';
foreach ($arr as $s) {
if ($import) {
$import = false;
if ($s == 'vars.less') {
continue;
}
// process import file
$url = T3Path::cleanPath(dirname($path) . '/' . $s);
$importcontent = JFile::read(JPATH_ROOT . '/' . $url);
if (preg_match('#^\\s*@import\\s+"([^"]*)"\\s*;#im', $importcontent)) {
$importdirs[] = dirname(JPATH_ROOT . '/' . $url);
}
$output .= "#less-file-path{content: \"{$url}\";}\n" . $importcontent . "\n\n";
} else {
$import = true;
$s = trim($s);
if ($s) {
$output .= "#less-file-path{content: \"{$path}\";}\n" . $s . "\n\n";
}
}
}
$importdirs[] = dirname($realpath);
$importdirs[] = T3_TEMPLATE_PATH . '/less/';
$this->setImportDir($importdirs);
$output = $this->compile($vars . "\n" . $output);
$arr = preg_split('#^\\s*\\#less-file-path\\s*{\\s*[\\r\\n]*\\s*content:\\s*"([^"]*)";\\s*[\\r\\n]*\\s*}#im', $output, -1, PREG_SPLIT_DELIM_CAPTURE);
$output = '';
$file = '';
$isfile = false;
foreach ($arr as $s) {
if ($isfile) {
$isfile = false;
$file = $s;
$relpath = $topath ? T3Path::relativePath(dirname($topath), dirname($file)) : JURI::base(true) . '/' . dirname($file);
} else {
$output .= ($file ? T3Path::updateUrl($s, $relpath) : $s) . "\n\n";
$isfile = true;
}
}
// remove the dupliate clearfix at the beggining if not bootstrap.css file
if (!preg_match('#bootstrap.less#', $path)) {
$arr = preg_split('/[\\r?\\n]{2,}/', $output);
// ignore first one, it's clearfix
array_shift($arr);
$output = implode("\n", $arr);
}
if ($topath) {
$tofile = JPATH_ROOT . '/' . $topath;
if (!is_dir(dirname($tofile))) {
JFolder::create(dirname($tofile));
}
$ret = JFile::write($tofile, $output);
@chmod($tofile, 0644);
return $ret;
}
return $output;
}
示例3: optimizecss
//.........这里部分代码省略.........
}
$stylesheets = array($url => $stylesheet); // empty - begin a new group
$selcounts = $selcount;
} else {
$stylesheets[$url] = $stylesheet;
$selcounts += $selcount;
}
} else {
// first get all the stylsheets up to this point, and get them into
// the items array
if(count($stylesheets)){
$cssgroup = array();
$groupname = array();
foreach ( $stylesheets as $gurl => $gsheet ) {
$cssgroup[$gurl] = $gsheet;
$groupname[] = $gurl;
}
$cssgroup['groupname'] = implode('', $groupname);
$cssgroups[] = $cssgroup;
}
//mark ignore current stylesheet
$cssgroup = array($url => $stylesheet, 'ignore' => true);
$cssgroups[] = $cssgroup;
$stylesheets = array(); // empty - begin a new group
}
}
if(count($stylesheets)){
$cssgroup = array();
$groupname = array();
foreach ( $stylesheets as $gurl => $gsheet ) {
$cssgroup[$gurl] = $gsheet;
$groupname[] = $gurl;
}
$cssgroup['groupname'] = implode('', $groupname);
$cssgroups[] = $cssgroup;
}
//======================= Group css ================= //
$output = array();
foreach ($cssgroups as $cssgroup) {
if(isset($cssgroup['ignore'])){
unset($cssgroup['ignore']);
foreach ($cssgroup as $furl => $fsheet) {
$output[$furl] = $fsheet;
}
} else {
$groupname = 'css-' . substr(md5($cssgroup['groupname']), 0, 5) . '.css';
$groupfile = $outputpath . '/' . $groupname;
$grouptime = JFile::exists($groupfile) ? @filemtime($groupfile) : -1;
$rebuild = $grouptime < 0; //filemtime == -1 => rebuild
unset($cssgroup['groupname']);
foreach ($cssgroup as $furl => $fsheet) {
if(!$rebuild && @filemtime($fsheet['path']) > $grouptime){
$rebuild = true;
}
}
if($rebuild){
$cssdata = array();
foreach ($cssgroup as $furl => $fsheet) {
$cssdata[] = "\n\n/*===============================";
$cssdata[] = $furl;
$cssdata[] = "================================================================================*/";
$cssmin = Minify_CSS_Compressor::process($fsheet['data']);
$cssmin = T3Path::updateUrl($cssmin, T3Path::relativePath($outputurl, dirname($furl)));
$cssdata[] = $cssmin;
}
$cssdata = implode("\n", $cssdata);
JFile::write($groupfile, $cssdata);
@chmod($groupfile, 0644);
}
$output[$outputurl . '/' . $groupname] = array(
'mime' => 'text/css',
'media' => null,
'attribs' => array()
);
}
}
//apply the change make change
$doc->_styleSheets = $output;
}
示例4: updateUrl
/**
* Update url for background, import according to output path
*
* @param $css the compiled css
* @param $path the source less path
* @param $output_dir destination of css file
* @param $split split into small files or not
* @return if $split then return an array of sub file, else return the whole css
*/
public static function updateUrl($css, $path, $output_dir, $split)
{
//update path and store to files
$split_contents = preg_split(self::$rsplitbegin . self::$kfilepath . self::$rsplitend, $css, -1, PREG_SPLIT_DELIM_CAPTURE);
$file_contents = array();
$file = $path;
$isfile = false;
$output = '';
// split
foreach ($split_contents as $chunk) {
if ($isfile) {
$isfile = false;
$file = $chunk;
} else {
$content = T3Path::updateUrl(trim($chunk), T3Path::relativePath($output_dir, dirname($file)));
$file_contents[$file] = (isset($file_contents[$file]) ? $file_contents[$file] : '') . "\n" . $content . "\n\n";
$output .= $content . "\n";
$isfile = true;
}
}
return $split ? $file_contents : trim($output);
}
示例5: divide
//.........这里部分代码省略.........
}
// remember this path when lookup for import
if (preg_match($rimport, $importcontent)) {
$importdirs[dirname(JPATH_ROOT . '/' . $rtl_url)] = $root . '/' . dirname($rtl_url) . '/';
}
$rtlcontent .= "\n{$importcontent}\n\n";
// rtl theme overwrite
if ($theme && strpos($url, 'themes/') === false) {
$rtlthemepath = preg_replace($rswitchrtl, '/less/rtl/' . $theme . '/', $url);
if (is_file(JPATH_ROOT . '/' . $rtlthemepath)) {
// process import file
$importcontent = JFile::read(JPATH_ROOT . '/' . $rtlthemepath);
$rtlcontent .= "\n{$importcontent}\n\n";
$importdirs[dirname(JPATH_ROOT . '/' . $rtlthemepath)] = $root . '/' . dirname($rtlthemepath) . '/';
}
}
} else {
$import = true;
}
}
// override in template for this file
$rtlpath = preg_replace($rswitchrtl, '/less/rtl/', $path);
if (is_file(JPATH_ROOT . '/' . $rtlpath)) {
// process import file
$importcontent = JFile::read(JPATH_ROOT . '/' . $rtlpath);
$rtlcontent .= "\n{$importcontent}\n\n";
$importdirs[dirname(JPATH_ROOT . '/' . $rtlpath)] = $root . '/' . dirname($rtlpath) . '/';
}
// rtl theme
if ($theme) {
$rtlthemepath = preg_replace($rswitchrtl, '/less/rtl/' . $theme . '/', $path);
if (is_file(JPATH_ROOT . '/' . $rtlthemepath)) {
// process import file
$importcontent = JFile::read(JPATH_ROOT . '/' . $rtlthemepath);
$rtlcontent .= "\n{$importcontent}\n\n";
$importdirs[dirname(JPATH_ROOT . '/' . $rtlthemepath)] = $root . '/' . dirname($rtlthemepath) . '/';
}
}
if ($rtlcontent) {
//rtl content will be treat as a new file
$rtlfile = str_replace('.less', '-rtl.less', $path);
$output = $output . "\n#{$kfilepath}{content: \"{$rtlfile}\";}\n\n#{$krtlsep}{content: \"separator\";}\n\n{$rtlcontent}\n\n";
}
}
// common place
$importdirs[T3_TEMPLATE_PATH . '/less'] = T3_TEMPLATE_URL . '/less/';
// myself
$importdirs[dirname(JPATH_ROOT . '/' . $path)] = $root . '/' . dirname($path) . '/';
// compile less to css using lessphp
$parser->SetImportDirs($importdirs);
$parser->SetFileInfo(JPATH_ROOT . '/' . $path, $root . '/' . dirname($path) . '/');
$source = $vars . "\n#{$kvarsep}{content: \"separator\";}\n" . $output;
$parser->parse($source);
$output = $parser->getCss();
//use cssjanus to transform the content
if ($is_rtl) {
if ($rtlcontent) {
$output = preg_split($rsplitbegin . $krtlsep . $rsplitend, $output, -1, PREG_SPLIT_DELIM_CAPTURE);
$rtlcontent = isset($output[2]) ? $output[2] : false;
$output = $output[0];
}
T3::import('jacssjanus/ja.cssjanus');
$output = JACSSJanus::transform($output, true);
if ($rtlcontent) {
$output = $output . "\n" . $rtlcontent;
}
}
//update path and store to files
$split_contents = preg_split($rsplitbegin . $kfilepath . $rsplitend, $output, -1, PREG_SPLIT_DELIM_CAPTURE);
$file_contents = array();
$file = $path;
//default
$relpath = JURI::base(true) . '/' . dirname($file);
$isfile = false;
foreach ($split_contents as $chunk) {
if ($isfile) {
$isfile = false;
$file = $chunk;
$relpath = $topath ? T3Path::relativePath($topath, dirname($file)) : JURI::base(true) . '/' . dirname($file);
} else {
$file_contents[$file] = (isset($file_contents[$file]) ? $file_contents[$file] : '') . "\n" . ($file ? T3Path::updateUrl($chunk, $relpath) : $chunk) . "\n\n";
$isfile = true;
}
}
if (!empty($file_contents)) {
// remove the duplicate clearfix at the beginning
$split_contents = preg_split($rsplitbegin . $kvarsep . $rsplitend, reset($file_contents));
// ignore first one, it's clearfix
if (is_array($split_contents)) {
array_shift($split_contents);
}
$file_contents[key($file_contents)] = implode("\n", $split_contents);
//output the file to content and add to document
foreach ($file_contents as $file => $content) {
$cssfile = $topath . str_replace('/', '.', $file) . '.css';
JFile::write(JPATH_ROOT . '/' . $cssfile, $content);
$doc->addStylesheet($root . '/' . $cssfile);
}
}
}
示例6: compileCss
//.........这里部分代码省略.........
$import = false;
$url = T3Path::cleanPath(dirname($path) . '/' . $s);
// ignore vars.less and variables.less if they are in template folder
// cause there may have other css less file with the same name (eg. font awesome)
if (preg_match($rvarscheck, $url)) {
continue;
}
// process import file
$url = preg_replace('/\\/less\\/(themes\\/)?/', '/less/rtl/', $url);
if (!is_file(JPATH_ROOT . '/' . $url)) {
continue;
}
// process import file
$importcontent = JFile::read(JPATH_ROOT . '/' . $url);
if (preg_match($rexcludepath, $url)) {
$importcontent = preg_replace($rimportvars, '', $importcontent);
}
// remember this path when lookup for import
if (preg_match($rimport, $importcontent)) {
$importdirs[] = dirname(JPATH_ROOT . '/' . $url);
}
$rtlcontent .= "#{$kfilepath}-rtl{content: \"{$url}\";}\n{$importcontent}\n\n";
} else {
$import = true;
}
}
// override in template for this file
$rtlpath = preg_replace('/\\/less\\/(themes\\/[^\\/]*\\/)?/', '/less/rtl/', $path);
if (is_file(JPATH_ROOT . '/' . $rtlpath)) {
// process import file
$importcontent = JFile::read(JPATH_ROOT . '/' . $rtlpath);
$rtlcontent .= "#{$kfilepath}-rtl{content: \"{$rtlpath}\";}\n{$importcontent}\n\n";
}
// rtl theme
if ($theme) {
$rtlthemepath = preg_replace('/\\/less\\/(themes\\/[^\\/]*\\/)?/', '/less/rtl/' . $theme . '/', $path);
if (is_file(JPATH_ROOT . '/' . $rtlthemepath)) {
// process import file
$importcontent = JFile::read(JPATH_ROOT . '/' . $rtlthemepath);
$rtlcontent .= "#{$kfilepath}-rtl{content: \"{$rtlthemepath}\";}\n{$importcontent}\n\n";
}
}
if ($rtlcontent) {
$output = $output . "#{$krtlsep}{content: \"separator\";}\n\n{$rtlcontent}\n\n";
}
}
$importdirs[] = dirname($realpath);
$importdirs[] = T3_TEMPLATE_PATH . '/less/';
$this->setImportDir($importdirs);
$this->setPreserveComments(true);
$source = $vars . "\n#{$kvarsep}{content: \"separator\";}\n" . $output;
// compile less to css using lessphp
$output = $this->compile($source);
$arr = preg_split($rsplitbegin . $kfilepath . $rsplitend, $output, -1, PREG_SPLIT_DELIM_CAPTURE);
$output = '';
$file = '';
$isfile = false;
foreach ($arr as $s) {
if ($isfile) {
$isfile = false;
$file = $s;
$relpath = $topath ? T3Path::relativePath(dirname($topath), dirname($file)) : JURI::base(true) . '/' . dirname($file);
} else {
$output .= ($file ? T3Path::updateUrl($s, $relpath) : $s) . "\n\n";
$isfile = true;
}
}
// remove the dupliate clearfix at the beggining if not bootstrap.css file
if (strpos($path, $tpl . '/less/bootstrap.less') === false) {
$arr = preg_split($rsplitbegin . $kvarsep . $rsplitend, $output);
// ignore first one, it's clearfix
if (is_array($arr)) {
array_shift($arr);
}
$output = implode("\n", $arr);
} else {
$output = preg_replace($rsplitbegin . $kvarsep . $rsplitend, '', $output);
}
if ($is_rtl) {
if ($rtlcontent) {
$output = preg_split($rsplitbegin . $krtlsep . $rsplitend, $output, -1, PREG_SPLIT_DELIM_CAPTURE);
$rtlcontent = isset($output[2]) ? $output[2] : false;
$output = $output[0];
}
T3::import('jacssjanus/ja.cssjanus');
$output = JACSSJanus::transform($output, true);
if ($rtlcontent) {
$output = $output . "\n" . $rtlcontent;
}
}
//remove comments and clean up
$output = preg_replace($rcomment, '', $output);
$output = preg_replace($rspace, "\n\n", $output);
if ($tofile) {
$ret = JFile::write($tofile, $output);
@chmod($tofile, 0644);
return $ret;
}
return $output;
}
示例7: optimizecss
//.........这里部分代码省略.........
}
$cssgroup['groupname'] = implode('', $groupname);
$cssgroup['grouptime'] = $grouptime;
$cssgroup['media'] = $media;
$cssgroups[] = $cssgroup;
}
$stylesheets = array($url => $stylesheet);
// empty - begin a new group
$selcounts = $selcount;
} else {
$stylesheets[$url] = $stylesheet;
$selcounts += $selcount;
}
} else {
// first get all the stylsheets up to this point, and get them into
// the items array
if (count($stylesheets)) {
$cssgroup = array();
$groupname = array();
$grouptime = 0;
foreach ($stylesheets as $gurl => $gsheet) {
$cssgroup[$gurl] = $gsheet;
$groupname[] = $gurl;
$ftime = @filemtime($gsheet['path']);
if ($ftime > $grouptime) {
$grouptime = $ftime;
}
}
$cssgroup['groupname'] = implode('', $groupname);
$cssgroup['grouptime'] = $grouptime;
$cssgroup['media'] = $media;
$cssgroups[] = $cssgroup;
}
//mark ignore current stylesheet
$cssgroup = array($url => $stylesheet, 'ignore' => true);
$cssgroups[] = $cssgroup;
$stylesheets = array();
// empty - begin a new group
}
}
if (count($stylesheets)) {
$cssgroup = array();
$groupname = array();
$grouptime = 0;
foreach ($stylesheets as $gurl => $gsheet) {
$cssgroup[$gurl] = $gsheet;
$groupname[] = $gurl;
$ftime = @filemtime($gsheet['path']);
if ($ftime > $grouptime) {
$grouptime = $ftime;
}
}
$cssgroup['groupname'] = implode('', $groupname);
$cssgroup['grouptime'] = $grouptime;
$cssgroup['media'] = $media;
$cssgroups[] = $cssgroup;
}
}
//======================= Group css ================= //
$output = array();
foreach ($cssgroups as $cssgroup) {
if (isset($cssgroup['ignore'])) {
unset($cssgroup['ignore']);
unset($cssgroup['groupname']);
unset($cssgroup['media']);
foreach ($cssgroup as $furl => $fsheet) {
$output[$furl] = $fsheet;
}
} else {
$rebuildCheck = self::checkRebuild($cssgroup, 'css', $outputpath);
$media = $cssgroup['media'];
unset($cssgroup['groupname']);
unset($cssgroup['grouptime']);
unset($cssgroup['media']);
$groupname = $rebuildCheck['filename'];
if ($rebuildCheck['rebuild']) {
$groupfile = $outputpath . '/' . $groupname;
$cssdata = array();
foreach ($cssgroup as $furl => $fsheet) {
$cssdata[] = "\n\n/*===============================";
$cssdata[] = $furl;
$cssdata[] = "================================================================================*/";
$cssmin = self::minifyCss($fsheet['data']);
$cssmin = T3Path::updateUrl($cssmin, T3Path::relativePath($outputurl, dirname($furl)));
$cssdata[] = $cssmin;
}
$cssdata = implode("\n", $cssdata);
if (!JFile::write($groupfile, $cssdata)) {
// cannot write file, ignore minify
return false;
}
$grouptime = @filemtime($groupfile);
@chmod($groupfile, 0644);
}
$output[$outputurl . '/' . $groupname] = array('mime' => 'text/css', 'media' => $media == 'all' ? NULL : $media, 'attribs' => array());
}
}
//apply the change make change
$doc->_styleSheets = $output;
}