diff --git a/apple-touch-icon-114x114-precomposed.png b/apple-touch-icon-114x114-precomposed.png new file mode 100644 index 0000000..7d0bc99 Binary files /dev/null and b/apple-touch-icon-114x114-precomposed.png differ diff --git a/apple-touch-icon-72x72-precomposed.png b/apple-touch-icon-72x72-precomposed.png new file mode 100644 index 0000000..ce144fa Binary files /dev/null and b/apple-touch-icon-72x72-precomposed.png differ diff --git a/apple-touch-icon-precomposed.png b/apple-touch-icon-precomposed.png new file mode 100644 index 0000000..c217160 Binary files /dev/null and b/apple-touch-icon-precomposed.png differ diff --git a/user/plugins/my-own-stuff/plugin.php b/user/plugins/my-own-stuff/plugin.php new file mode 100644 index 0000000..76f949a --- /dev/null +++ b/user/plugins/my-own-stuff/plugin.php @@ -0,0 +1,51 @@ + of pages in the admin area +yourls_add_filter( 'html_title', 'krtmn_change_title' ); + +function krtmn_change_title( $value, $title ) { + $value = $title.' | krt.mn'; + return $value; +} + + +// modify admin logo +//yourls_add_action( 'html_logo', 'krtmn_logo' ); +// +//function krtmn_logo() { +// echo '
  • hello
  • '; +//} + + +// custom css +yourls_add_action( 'html_head', 'krtmn_css' ); + +function krtmn_css() { + echo ''; +} + +// favicon & touch icons +yourls_add_action( 'html_head', 'krtmn_touch_icons' ); + +function krtmn_touch_icons() { + echo ' + + + '; +} + + + + + +?> \ No newline at end of file