show dbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getMonthName($month) { | |
switch ($month) { | |
case 1: | |
$month = 'Januari'; | |
break; | |
case 2: | |
$month = 'Februari'; | |
break; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<vx-card class="mb-base"> | |
<div class="flex justify-end"> | |
<div class="text-right"> | |
<table class="text-center"> | |
<tr> | |
<td rowspan="2" class="text-left">Karyawan<br/>Aktif</td> | |
<th rowspan="2" class="text-left"> | |
<h1>{{ jumlahKaryawan.all }}</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<vx-card class="mb-base"> | |
<div class="flex justify-end"> | |
<div class="text-right"> | |
<table class="text-center"> | |
<tr> | |
<td rowspan="2" class="text-left">Karyawan<br/>Aktif</td> | |
<th rowspan="2" class="text-left"> | |
<h1>{{ jumlahKaryawan.all }}</h1> |
**N.B. All links will fall back to the default account if there is no match
Opens the inbox with a compose window in the bottom right
-
Default account: https://mail.google.com/mail/#compose
-
Specific account by index (second in this example):
https://mail.google.com/mail/u/1/#compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference path="../pb_data/types.d.ts" /> | |
routerAdd( | |
"GET", | |
"/api/custom/product-quantities", | |
(c) => { | |
const page = parseInt(c.queryParam("page") || "1", 10); | |
const perPage = parseInt(c.queryParam("perPage") || "20", 10); | |
const search = c.queryParam("search") || ""; | |
try { |