Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ApplicationAssets Sınıfının Yapımı #45

Open
gdemir opened this issue Jan 17, 2020 · 0 comments
Open

ApplicationAssets Sınıfının Yapımı #45

gdemir opened this issue Jan 17, 2020 · 0 comments

Comments

@gdemir
Copy link
Member

gdemir commented Jan 17, 2020

Assets altındaki dosyalarda güncelleme olduğunda tarayıcı tarafından daha önceki dosyaların önbellekte tutulmasını engellemek için kullanılacak sınıf. Bu sınıf,

http://.../assets/css/default.css?123
http://.../assets/css/default.css?156

mantığıyla ? sonrası gelen rakam değiştiği takdirde tekrar yüklemeye zorlamasıyla çalışmaktadır.

class ApplicationAssets {

	const ASSETSPATH = "/app/assets/";

	public static function css($file) {
		$file = self::ASSETSPATH . "css/" . $file;
		return self::_no_cache($file);
	}

	public static function js($file) {
		$file = self::ASSETSPATH . "js/" . $file;
		return self::_no_cache($file);
	}

	public static function font($file) {
		$file = self::ASSETSPATH . "font/" . $file;
		return self::_no_cache($file);
	}
	
	private static function _no_cache($file) {
		return $file . "?" . md5(filemtime($file));
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant