_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Mr.Z-man/refbuttons.js

In today's world, User:Mr.Z-man/refbuttons.js continues to be a topic of interest and debate. Over time, it has become a fundamental element in society and has impacted various aspects of daily life. Whether on a personal, political, scientific or cultural level, User:Mr.Z-man/refbuttons.js has left a significant mark on history and continues to generate controversies and conflicting opinions. In this article, we will closely study the influence of User:Mr.Z-man/refbuttons.js in different contexts, as well as the advances and challenges it represents for the future.
// For description, see ]

function refbuttons() {
 if (typeof mwCustomEditButtons !== 'undefined') {

    var time = new Date();
    var curday = time.getDate();
    var curmonth = time.getMonth()+1;
    var nowyear = time.getYear()+1900;
    var nowday = curday.toString();
    if (curday <10) { nowday = "0"+nowday;}
    var nowmonth = curmonth.toString();
    if (curmonth <10) { nowmonth = "0"+nowmonth;}

   mwCustomEditButtons = {
     "imageFile": "http://upload.wikimedia.org/wikipedia/commons/9/91/Button_cite_web.png",
     "speedTip": "Web citation",
     "tagOpen": "<ref>{{cite web |url= |title= |accessdate=" + nowyear + "-" + nowmonth + "-" + nowday + " |last= |first= |coauthors= |date= |work= |publisher=",
     "tagClose": "}}</ref>",
     "sampleText": ""};

   mwCustomEditButtons = {
     "imageFile": "http://upload.wikimedia.org/wikipedia/commons/2/2c/Button_cite_news.png",
     "speedTip": "News citation",
     "tagOpen": "<ref>{{cite news |first= |last= |authorlink= |coauthors= |title= |url= |work= |publisher= |date= |accessdate=" + nowyear + "-" + nowmonth + "-" + nowday,
     "tagClose": "}}</ref>",
     "sampleText": ""};

   mwCustomEditButtons = {
     "imageFile": "http://upload.wikimedia.org/wikipedia/commons/e/ef/Button_cite_book.png",
     "speedTip": "Book citation",
     "tagOpen": "<ref>{{cite book |title= |last= |first= |authorlink= |coauthors= |year= |publisher= |location= |isbn=",
     "tagClose": "}}</ref>",
     "sampleText": ""};
  }
}
$(refbuttons);