1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788: 789: 790: 791: 792: 793: 794: 795: 796: 797: 798: 799: 800: 801: 802: 803: 804: 805: 806: 807: 808: 809: 810: 811: 812: 813: 814: 815: 816: 817: 818: 819: 820: 821: 822: 823: 824: 825: 826: 827: 828: 829: 830: 831: 832: 833: 834: 835: 836: 837: 838: 839: 840: 841: 842: 843: 844: 845: 846: 847: 848: 849: 850: 851: 852: 853: 854: 855: 856: 857: 858: 859: 860: 861: 862: 863: 864: 865: 866: 867: 868: 869: 870: 871: 872: 873: 874: 875: 876: 877: 878: 879: 880: 881: 882: 883: 884: 885: 886: 887: 888: 889: 890: 891: 892: 893: 894: 895: 896: 897: 898: 899: 900: 901: 902: 903: 904: 905: 906: 907: 908: 909: 910: 911: 912: 913: 914: 915: 916: 917: 918: 919: 920: 921: 922: 923: 924: 925: 926: 927: 928: 929: 930: 931: 932: 933: 934: 935: 936: 937: 938: 939: 940: 941: 942: 943: 944: 945: 946: 947: 948: 949: 950: 951: 952: 953: 954: 955: 956: 957: 958: 959: 960: 961: 962: 963: 964: 965: 966: 967: 968: 969: 970: 971: 972: 973: 974: 975: 976: 977: 978: 979: 980: 981: 982: 983: 984: 985: 986: 987: 988: 989: 990: 991: 992: 993: 994: 995: 996: 997: 998: 999: 1000: 1001: 1002: 1003: 1004: 1005: 1006: 1007: 1008: 1009: 1010: 1011: 1012: 1013: 1014: 1015: 1016: 1017: 1018: 1019: 1020: 1021: 1022: 1023: 1024: 1025: 1026: 1027: 1028: 1029: 1030: 1031: 1032: 1033: 1034: 1035: 1036: 1037: 1038: 1039: 1040: 1041: 1042: 1043: 1044: 1045: 1046: 1047: 1048: 1049: 1050: 1051: 1052: 1053: 1054: 1055: 1056: 1057: 1058: 1059: 1060: 1061: 1062: 1063: 1064: 1065: 1066: 1067: 1068: 1069: 1070: 1071: 1072: 1073: 1074: 1075: 1076: 1077: 1078: 1079: 1080: 1081: 1082: 1083: 1084: 1085: 1086: 1087: 1088: 1089: 1090: 1091: 1092: 1093: 1094: 1095: 1096: 1097: 1098: 1099: 1100: 1101: 1102: 1103: 1104: 1105: 1106: 1107: 1108: 1109: 1110: 1111: 1112: 1113: 1114: 1115: 1116: 1117: 1118: 1119: 1120: 1121: 1122: 1123: 1124: 1125: 1126: 1127: 1128: 1129: 1130: 1131: 1132: 1133: 1134: 1135: 1136: 1137: 1138: 1139: 1140: 1141: 1142: 1143: 1144: 1145: 1146: 1147: 1148: 1149: 1150: 1151: 1152: 1153: 1154: 1155: 1156: 1157: 1158: 1159: 1160: 1161: 1162: 1163: 1164: 1165: 1166: 1167: 1168: 1169: 1170: 1171: 1172: 1173: 1174: 1175: 1176: 1177: 1178: 1179: 1180: 1181: 1182: 1183: 1184: 1185: 1186: 1187: 1188: 1189: 1190: 1191: 1192: 1193: 1194: 1195: 1196: 1197: 1198: 1199: 1200: 1201: 1202: 1203: 1204: 1205: 1206: 1207: 1208: 1209: 1210: 1211: 1212: 1213: 1214: 1215: 1216: 1217: 1218: 1219: 1220: 1221: 1222: 1223: 1224: 1225: 1226: 1227: 1228: 1229: 1230: 1231: 1232: 1233: 1234: 1235: 1236: 1237: 1238: 1239: 1240: 1241: 1242: 1243: 1244: 1245: 1246: 1247: 1248: 1249: 1250: 1251: 1252: 1253: 1254: 1255: 1256: 1257: 1258: 1259: 1260: 1261: 1262: 1263: 1264: 1265: 1266: 1267: 1268: 1269: 1270: 1271: 1272: 1273: 1274: 1275: 1276: 1277: 1278: 1279: 1280: 1281: 1282: 1283: 1284: 1285: 1286: 1287: 1288: 1289: 1290: 1291: 1292: 1293: 1294: 1295: 1296: 1297: 1298: 1299: 1300: 1301: 1302: 1303: 1304: 1305: 1306: 1307: 1308: 1309: 1310: 1311: 1312: 1313: 1314: 1315: 1316: 1317: 1318: 1319: 1320: 1321: 1322: 1323: 1324: 1325: 1326: 1327: 1328: 1329: 1330: 1331: 1332: 1333: 1334: 1335: 1336: 1337: 1338: 1339: 1340: 1341: 1342: 1343: 1344: 1345: 1346: 1347: 1348: 1349: 1350: 1351: 1352: 1353: 1354: 1355: 1356: 1357: 1358: 1359: 1360: 1361: 1362: 1363: 1364: 1365: 1366: 1367: 1368: 1369: 1370: 1371: 1372: 1373: 1374: 1375: 1376: 1377: 1378: 1379: 1380: 1381: 1382: 1383: 1384: 1385: 1386: 1387: 1388: 1389: 1390: 1391: 1392: 1393: 1394: 1395: 1396: 1397: 1398: 1399: 1400: 1401: 1402: 1403: 1404: 1405: 1406: 1407: 1408: 1409: 1410: 1411: 1412: 1413: 1414: 1415: 1416: 1417: 1418: 1419: 1420: 1421: 1422: 1423: 1424: 1425: 1426: 1427: 1428: 1429: 1430: 1431: 1432: 1433: 1434: 1435: 1436: 1437: 1438: 1439: 1440: 1441: 1442: 1443: 1444: 1445: 1446: 1447: 1448: 1449: 1450: 1451: 1452: 1453: 1454: 1455: 1456: 1457: 1458: 1459: 1460: 1461: 1462: 1463: 1464: 1465: 1466: 1467: 1468: 1469: 1470: 1471: 1472: 1473: 1474: 1475: 1476: 1477: 1478: 1479: 1480: 1481: 1482: 1483: 1484: 1485: 1486: 1487: 1488: 1489: 1490: 1491: 1492: 1493: 1494: 1495: 1496: 1497: 1498: 1499: 1500: 1501: 1502: 1503: 1504: 1505: 1506: 1507: 1508: 1509: 1510: 1511: 1512: 1513: 1514: 1515: 1516: 1517: 1518: 1519: 1520: 1521: 1522: 1523: 1524: 1525: 1526: 1527: 1528: 1529: 1530: 1531: 1532: 1533: 1534: 1535: 1536: 1537: 1538: 1539: 1540: 1541: 1542: 1543: 1544: 1545: 1546: 1547: 1548: 1549: 1550: 1551: 1552: 1553: 1554: 1555: 1556: 1557: 1558: 1559: 1560: 1561: 1562: 1563: 1564: 1565: 1566: 1567: 1568: 1569: 1570: 1571: 1572: 1573: 1574: 1575: 1576: 1577: 1578: 1579: 1580: 1581: 1582: 1583: 1584: 1585: 1586: 1587: 1588: 1589: 1590: 1591: 1592: 1593: 1594: 1595: 1596: 1597: 1598: 1599: 1600: 1601: 1602: 1603: 1604: 1605: 1606: 1607: 1608: 1609: 1610: 1611: 1612: 1613: 1614: 1615: 1616: 1617: 1618: 1619: 1620: 1621: 1622: 1623: 1624: 1625: 1626: 1627: 1628: 1629: 1630: 1631: 1632: 1633: 1634: 1635: 1636: 1637: 1638: 1639: 1640: 1641: 1642: 1643: 1644: 1645: 1646: 1647: 1648: 1649: 1650: 1651: 1652: 1653: 1654: 1655: 1656: 1657: 1658: 1659: 1660: 1661: 1662: 1663: 1664: 1665: 1666: 1667: 1668: 1669: 1670: 1671: 1672: 1673: 1674: 1675: 1676: 1677: 1678: 1679: 1680: 1681: 1682: 1683: 1684: 1685: 1686: 1687: 1688: 1689: 1690: 1691: 1692: 1693: 1694: 1695: 1696: 1697: 1698: 1699: 1700: 1701: 1702: 1703: 1704: 1705: 1706: 1707: 1708: 1709: 1710: 1711: 1712: 1713: 1714: 1715: 1716: 1717: 1718: 1719: 1720: 1721: 1722: 1723: 1724: 1725: 1726: 1727: 1728: 1729: 1730: 1731: 1732: 1733: 1734: 1735: 1736: 1737: 1738: 1739: 1740: 1741: 1742: 1743: 1744: 1745: 1746: 1747: 1748: 1749: 1750: 1751: 1752: 1753: 1754: 1755: 1756: 1757: 1758: 1759: 1760: 1761: 1762: 1763: 1764: 1765: 1766: 1767: 1768: 1769: 1770: 1771: 1772: 1773: 1774: 1775: 1776: 1777: 1778: 1779: 1780: 1781: 1782: 1783: 1784: 1785: 1786: 1787: 1788: 1789: 1790: 1791: 1792: 1793: 1794: 1795: 1796: 1797: 1798: 1799: 1800: 1801: 1802: 1803: 1804: 1805: 1806: 1807: 1808: 1809: 1810: 1811: 1812: 1813: 1814: 1815: 1816: 1817: 1818: 1819: 1820: 1821: 1822: 1823: 1824: 1825: 1826: 1827: 1828: 1829: 1830: 1831: 1832: 1833: 1834: 1835: 1836: 1837: 1838: 1839: 1840: 1841: 1842: 1843: 1844: 1845: 1846: 1847: 1848: 1849: 1850: 1851: 1852: 1853: 1854: 1855: 1856: 1857: 1858: 1859: 1860: 1861: 1862: 1863: 1864: 1865: 1866: 1867: 1868: 1869: 1870: 1871: 1872: 1873: 1874: 1875: 1876: 1877: 1878: 1879: 1880: 1881: 1882: 1883: 1884: 1885: 1886: 1887: 1888: 1889: 1890: 1891: 1892: 1893: 1894: 1895: 1896: 1897: 1898: 1899: 1900: 1901: 1902: 1903: 1904: 1905: 1906: 1907: 1908: 1909: 1910: 1911: 1912: 1913: 1914: 1915: 1916: 1917: 1918: 1919: 1920: 1921: 1922: 1923: 1924: 1925: 1926: 1927: 1928: 1929: 1930: 1931: 1932: 1933: 1934: 1935: 1936: 1937: 1938: 1939: 1940: 1941: 1942: 1943: 1944: 1945: 1946: 1947: 1948: 1949: 1950: 1951: 1952: 1953: 1954: 1955: 1956: 1957: 1958: 1959: 1960: 1961: 1962: 1963: 1964: 1965: 1966: 1967: 1968: 1969: 1970: 1971: 1972: 1973: 1974: 1975: 1976: 1977: 1978: 1979: 1980: 1981: 1982: 1983: 1984: 1985: 1986: 1987: 1988: 1989: 1990: 1991: 1992: 1993: 1994: 1995: 1996: 1997: 1998: 1999: 2000: 2001: 2002: 2003: 2004: 2005: 2006: 2007: 2008: 2009: 2010: 2011: 2012: 2013: 2014: 2015: 2016: 2017: 2018: 2019: 2020: 2021: 2022: 2023: 2024: 2025: 2026: 2027: 2028: 2029: 2030: 2031: 2032: 2033: 2034: 2035: 2036: 2037: 2038: 2039: 2040: 2041: 2042: 2043: 2044: 2045: 2046: 2047: 2048: 2049: 2050: 2051: 2052: 2053: 2054: 2055: 2056: 2057: 2058: 2059: 2060: 2061: 2062: 2063: 2064: 2065: 2066: 2067: 2068: 2069: 2070: 2071: 2072: 2073: 2074: 2075: 2076: 2077: 2078: 2079: 2080: 2081: 2082: 2083: 2084: 2085: 2086: 2087: 2088: 2089: 2090: 2091: 2092: 2093: 2094: 2095: 2096: 2097: 2098: 2099: 2100: 2101: 2102: 2103: 2104: 2105: 2106: 2107: 2108: 2109: 2110: 2111: 2112: 2113: 2114: 2115: 2116: 2117: 2118: 2119: 2120: 2121: 2122: 2123: 2124: 2125: 2126: 2127: 2128: 2129: 2130: 2131: 2132: 2133: 2134: 2135: 2136: 2137: 2138: 2139: 2140: 2141: 2142: 2143: 2144: 2145: 2146: 2147: 2148: 2149: 2150: 2151: 2152: 2153: 2154: 2155: 2156: 2157: 2158: 2159: 2160: 2161: 2162: 2163: 2164: 2165: 2166: 2167: 2168: 2169: 2170: 2171: 2172: 2173: 2174: 2175: 2176: 2177: 2178: 2179: 2180: 2181: 2182: 2183: 2184: 2185: 2186: 2187: 2188: 2189: 2190: 2191: 2192: 2193: 2194: 2195: 2196: 2197: 2198: 2199: 2200: 2201: 2202: 2203: 2204: 2205: 2206: 2207: 2208: 2209: 2210: 2211: 2212: 2213: 2214: 2215: 2216: 2217: 2218: 2219: 2220: 2221: 2222: 2223: 2224: 2225: 2226: 2227: 2228: 2229: 2230: 2231: 2232: 2233: 2234: 2235: 2236: 2237: 2238: 2239: 2240: 2241: 2242: 2243: 2244: 2245: 2246: 2247: 2248: 2249: 2250: 2251: 2252: 2253: 2254: 2255: 2256: 2257: 2258: 2259: 2260: 2261: 2262: 2263: 2264: 2265: 2266: 2267: 2268: 2269: 2270: 2271: 2272: 2273: 2274: 2275: 2276: 2277: 2278: 2279: 2280: 2281: 2282: 2283: 2284: 2285: 2286: 2287: 2288: 2289: 2290: 2291: 2292: 2293: 2294: 2295: 2296: 2297: 2298: 2299: 2300: 2301: 2302: 2303: 2304: 2305: 2306: 2307: 2308: 2309: 2310: 2311: 2312: 2313: 2314: 2315: 2316: 2317: 2318: 2319: 2320: 2321: 2322: 2323: 2324: 2325: 2326: 2327: 2328: 2329: 2330: 2331: 2332: 2333: 2334: 2335: 2336: 2337: 2338: 2339: 2340: 2341: 2342: 2343: 2344: 2345: 2346: 2347: 2348: 2349: 2350: 2351: 2352: 2353: 2354: 2355: 2356: 2357: 2358: 2359: 2360: 2361: 2362: 2363: 2364: 2365: 2366: 2367: 2368: 2369: 2370: 2371: 2372: 2373: 2374: 2375: 2376: 2377: 2378: 2379: 2380: 2381: 2382: 2383: 2384: 2385: 2386: 2387: 2388: 2389: 2390: 2391: 2392: 2393: 2394: 2395: 2396: 2397: 2398: 2399: 2400: 2401: 2402: 2403: 2404: 2405: 2406: 2407: 2408: 2409: 2410: 2411: 2412: 2413: 2414: 2415: 2416: 2417: 2418: 2419: 2420: 2421: 2422: 2423: 2424: 2425: 2426: 2427: 2428: 2429: 2430: 2431: 2432: 2433: 2434: 2435: 2436: 2437: 2438: 2439: 2440: 2441: 2442: 2443: 2444: 2445: 2446: 2447: 2448: 2449: 2450: 2451: 2452: 2453: 2454: 2455: 2456: 2457: 2458: 2459: 2460: 2461: 2462: 2463: 2464: 2465: 2466: 2467: 2468: 2469: 2470: 2471: 2472: 2473: 2474: 2475: 2476: 2477: 2478: 2479: 2480: 2481: 2482: 2483: 2484: 2485: 2486: 2487: 2488: 2489: 2490: 2491: 2492: 2493: 2494: 2495: 2496: 2497: 2498: 2499: 2500: 2501: 2502: 2503: 2504: 2505: 2506: 2507: 2508: 2509: 2510: 2511: 2512: 2513: 2514: 2515: 2516: 2517: 2518: 2519: 2520: 2521: 2522: 2523: 2524: 2525: 2526: 2527: 2528: 2529: 2530: 2531: 2532: 2533: 2534: 2535: 2536: 2537: 2538: 2539: 2540: 2541: 2542: 2543: 2544: 2545: 2546: 2547: 2548: 2549: 2550: 2551: 2552: 2553: 2554: 2555: 2556: 2557: 2558: 2559: 2560: 2561: 2562: 2563: 2564: 2565: 2566: 2567: 2568: 2569: 2570: 2571: 2572: 2573: 2574: 2575: 2576: 2577: 2578: 2579: 2580: 2581: 2582: 2583: 2584: 2585: 2586: 2587: 2588: 2589: 2590: 2591: 2592: 2593: 2594: 2595: 2596: 2597: 2598: 2599: 2600: 2601: 2602: 2603: 2604: 2605: 2606: 2607: 2608: 2609: 2610: 2611: 2612: 2613: 2614: 2615: 2616: 2617: 2618: 2619: 2620: 2621: 2622: 2623: 2624: 2625: 2626: 2627: 2628: 2629: 2630: 2631: 2632: 2633: 2634: 2635: 2636: 2637: 2638: 2639: 2640: 2641: 2642: 2643: 2644: 2645: 2646: 2647: 2648: 2649: 2650: 2651: 2652: 2653: 2654: 2655: 2656: 2657: 2658: 2659: 2660: 2661: 2662: 2663: 2664: 2665: 2666: 2667: 2668: 2669: 2670: 2671: 2672: 2673: 2674: 2675: 2676: 2677: 2678: 2679: 2680: 2681: 2682: 2683: 2684: 2685: 2686: 2687: 2688: 2689: 2690: 2691: 2692: 2693: 2694: 2695: 2696: 2697: 2698: 2699: 2700: 2701: 2702: 2703: 2704: 2705: 2706: 2707: 2708: 2709: 2710: 2711: 2712: 2713: 2714: 2715: 2716: 2717: 2718: 2719: 2720: 2721: 2722: 2723: 2724: 2725: 2726: 2727: 2728: 2729: 2730: 2731: 2732: 2733: 2734: 2735: 2736: 2737: 2738: 2739: 2740: 2741: 2742: 2743: 2744: 2745: 2746: 2747: 2748: 2749: 2750: 2751: 2752: 2753: 2754: 2755: 2756: 2757: 2758: 2759: 2760: 2761: 2762: 2763: 2764: 2765: 2766: 2767: 2768: 2769: 2770: 2771: 2772: 2773: 2774: 2775: 2776: 2777: 2778: 2779: 2780: 2781: 2782: 2783: 2784: 2785: 2786: 2787: 2788: 2789: 2790: 2791: 2792: 2793: 2794: 2795: 2796: 2797: 2798: 2799: 2800: 2801: 2802: 2803: 2804: 2805: 2806: 2807: 2808: 2809: 2810: 2811: 2812: 2813: 2814: 2815: 2816: 2817: 2818: 2819: 2820: 2821: 2822: 2823: 2824: 2825: 2826: 2827: 2828: 2829: 2830: 2831: 2832: 2833: 2834: 2835: 2836: 2837: 2838: 2839: 2840: 2841: 2842: 2843: 2844: 2845: 2846: 2847: 2848: 2849: 2850: 2851: 2852: 2853: 2854: 2855: 2856: 2857: 2858: 2859: 2860: 2861: 2862: 2863: 2864: 2865: 2866: 2867: 2868: 2869: 2870: 2871: 2872: 2873: 2874: 2875: 2876: 2877: 2878: 2879: 2880: 2881: 2882: 2883: 2884: 2885: 2886: 2887: 2888: 2889: 2890: 2891: 2892: 2893: 2894: 2895: 2896: 2897: 2898: 2899: 2900: 2901: 2902: 2903: 2904: 2905: 2906: 2907: 2908: 2909: 2910: 2911: 2912: 2913: 2914: 2915: 2916: 2917: 2918: 2919: 2920: 2921: 2922: 2923: 2924: 2925: 2926: 2927: 2928: 2929: 2930: 2931: 2932: 2933: 2934: 2935: 2936: 2937: 2938: 2939: 2940: 2941: 2942: 2943: 2944: 2945: 2946: 2947: 2948: 2949: 2950: 2951: 2952: 2953: 2954: 2955: 2956: 2957: 2958: 2959: 2960: 2961: 2962: 2963: 2964: 2965: 2966: 2967: 2968: 2969: 2970: 2971: 2972: 2973: 2974: 2975: 2976: 2977: 2978: 2979: 2980: 2981: 2982: 2983: 2984: 2985: 2986: 2987: 2988: 2989: 2990: 2991: 2992: 2993: 2994: 2995: 2996: 2997: 2998: 2999: 3000: 3001: 3002: 3003: 3004: 3005: 3006: 3007: 3008: 3009: 3010: 3011: 3012: 3013: 3014: 3015: 3016: 3017: 3018: 3019: 3020: 3021: 3022: 3023: 3024: 3025: 3026: 3027: 3028: 3029: 3030: 3031: 3032: 3033: 3034: 3035: 3036: 3037: 3038: 3039: 3040: 3041: 3042: 3043: 3044: 3045: 3046: 3047: 3048: 3049: 3050: 3051: 3052: 3053: 3054: 3055: 3056: 3057: 3058: 3059: 3060: 3061: 3062: 3063: 3064: 3065: 3066: 3067: 3068: 3069: 3070: 3071: 3072: 3073: 3074: 3075: 3076: 3077: 3078: 3079: 3080: 3081: 3082: 3083: 3084: 3085: 3086: 3087: 3088: 3089: 3090: 3091: 3092: 3093: 3094: 3095: 3096: 3097: 3098: 3099: 3100: 3101: 3102: 3103: 3104: 3105: 3106: 3107: 3108: 3109: 3110: 3111: 3112: 3113: 3114: 3115: 3116: 3117: 3118: 3119: 3120: 3121: 3122: 3123: 3124: 3125: 3126: 3127: 3128: 3129: 3130: 3131: 3132: 3133: 3134: 3135: 3136: 3137: 3138: 3139: 3140: 3141: 3142: 3143: 3144: 3145: 3146: 3147: 3148: 3149: 3150: 3151: 3152: 3153: 3154: 3155: 3156: 3157: 3158: 3159: 3160: 3161: 3162: 3163: 3164: 3165: 3166: 3167: 3168: 3169: 3170: 3171: 3172: 3173: 3174: 3175: 3176: 3177: 3178: 3179: 3180: 3181: 3182: 3183: 3184: 3185: 3186: 3187: 3188: 3189: 3190: 3191: 3192: 3193: 3194: 3195: 3196: 3197: 3198: 3199: 3200: 3201: 3202: 3203: 3204: 3205: 3206: 3207: 3208: 3209: 3210: 3211: 3212: 3213: 3214: 3215: 3216: 3217: 3218: 3219: 3220: 3221: 3222: 3223: 3224: 3225: 3226: 3227: 3228: 3229: 3230: 3231: 3232: 3233: 3234: 3235: 3236: 3237: 3238: 3239: 3240: 3241: 3242: 3243: 3244: 3245: 3246: 3247: 3248: 3249: 3250: 3251: 3252: 3253: 3254: 3255: 3256: 3257: 3258: 3259: 3260: 3261: 3262: 3263: 3264: 3265: 3266: 3267: 3268: 3269: 3270: 3271: 3272: 3273: 3274: 3275: 3276: 3277: 3278: 3279: 3280: 3281: 3282: 3283: 3284: 3285: 3286: 3287: 3288:
<?php
function template_profile_above()
{
global $context;
if (isBrowser('is_chrome') && !$context['user']['is_owner'])
echo '
<script>
disableAutoComplete();
</script>';
echo '
', template_error_message();
if (!empty($context['profile_updated']))
echo '
<div class="infobox">
', $context['profile_updated'], '
</div>';
}
function template_profile_below()
{
}
function template_profile_popup()
{
global $context, $scripturl;
echo '
<div class="profile_user_avatar floatleft">
<a href="', $scripturl, '?action=profile;u=', $context['user']['id'], '">', $context['member']['avatar']['image'], '</a>
</div>
<div class="profile_user_info floatleft">
<span class="profile_username"><a href="', $scripturl, '?action=profile;u=', $context['user']['id'], '">', $context['user']['name'], '</a></span>
<span class="profile_group">', $context['member']['group'], '</span>
</div>
<div class="profile_user_links">
<ol>';
$menu_context = &$context[$context['profile_menu_name']];
foreach ($context['profile_items'] as $item)
{
$area = &$menu_context['sections'][$item['menu']]['areas'][$item['area']];
$item_url = (isset($item['url']) ? $item['url'] : (isset($area['url']) ? $area['url'] : $menu_context['base_url'] . ';area=' . $item['area'])) . $menu_context['extra_parameters'];
echo '
<li>
', $area['icon'], '<a href="', $item_url, '">', !empty($item['title']) ? $item['title'] : $area['label'], '</a>
</li>';
}
echo '
</ol>
</div><!-- .profile_user_links -->';
}
function template_alerts_popup()
{
global $context, $txt, $scripturl;
echo '
<div class="alert_bar">
<div class="alerts_opts block">
<a href="' . $scripturl . '?action=profile;area=notification;sa=markread;', $context['session_var'], '=', $context['session_id'], '" onclick="return markAlertsRead(this)">', $txt['mark_alerts_read'], '</a>
<a href="', $scripturl, '?action=profile;area=notification;sa=alerts" class="floatright">', $txt['alert_settings'], '</a>
</div>
<div class="alerts_box centertext">
<a href="', $scripturl, '?action=profile;area=showalerts" class="button">', $txt['all_alerts'], '</a>
</div>
</div>
<div class="alerts_unread">';
if (empty($context['unread_alerts']))
template_alerts_all_read();
else
{
foreach ($context['unread_alerts'] as $id_alert => $details)
{
echo '
<', !$details['show_links'] ? 'a href="' . $details['target_href'] . '" onclick="this.classList.add(\'alert_read\')"' : 'div', ' class="unread_notify">
<div class="unread_notify_image">
', empty($details['sender']['avatar']['image']) ? '' : $details['sender']['avatar']['image'] . '
', $details['icon'], '
</div>
<div class="details">
<span class="alert_text">', $details['text'], '</span> - <span class="alert_time">', $details['time'], '</span>
</div>
</', !$details['show_links'] ? 'a' : 'div', '>';
}
}
echo '
</div><!-- .alerts_unread -->
<script>
function markAlertsRead(obj) {
ajax_indicator(true);
$.get(
obj.href,
function(data) {
ajax_indicator(false);
$("#alerts_menu_top span.amt").remove();
$("#alerts_menu div.alerts_unread").html(data);
if (typeof localStorage != "undefined")
localStorage.setItem("alertsCounter", 0);
}
);
return false;
}
</script>';
}
function template_alerts_all_read()
{
global $txt;
echo '<div class="no_unread">', $txt['alerts_no_unread'], '</div>';
}
function template_summary()
{
global $context, $settings, $scripturl, $modSettings, $txt;
echo '
<div id="profileview" class="roundframe flow_auto">
<div id="basicinfo">';
if (!empty($context['print_custom_fields']['above_member']))
{
$fields = '';
foreach ($context['print_custom_fields']['above_member'] as $field)
if (!empty($field['output_html']))
$fields .= '
<li>' . $field['output_html'] . '</li>';
if (!empty($fields))
echo '
<div class="custom_fields_above_name">
<ul>', $fields, '
</ul>
</div>';
}
echo '
<div class="username clear">
<h4>';
if (!empty($context['print_custom_fields']['before_member']))
foreach ($context['print_custom_fields']['before_member'] as $field)
if (!empty($field['output_html']))
echo '
<span>', $field['output_html'], '</span>';
echo '
', $context['member']['name'];
if (!empty($context['print_custom_fields']['after_member']))
foreach ($context['print_custom_fields']['after_member'] as $field)
if (!empty($field['output_html']))
echo '
<span>', $field['output_html'], '</span>';
echo '
<span class="position">', (!empty($context['member']['group']) ? $context['member']['group'] : $context['member']['post_group']), '</span>
</h4>
</div>
', $context['member']['avatar']['image'];
if (!empty($context['print_custom_fields']['below_avatar']))
{
$fields = '';
foreach ($context['print_custom_fields']['below_avatar'] as $field)
if (!empty($field['output_html']))
$fields .= '
<li>' . $field['output_html'] . '</li>';
if (!empty($fields))
echo '
<div class="custom_fields_below_avatar">
<ul>', $fields, '
</ul>
</div>';
}
echo '
<ul class="icon_fields clear">';
if ($context['member']['show_email'])
echo '
<li><a href="mailto:', $context['member']['email'], '" title="', $context['member']['email'], '" rel="nofollow"><span class="main_icons mail" title="' . $txt['email'] . '"></span></a></li>';
if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website']))
echo '
<li><a href="', $context['member']['website']['url'], '" title="' . $context['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="main_icons www" title="' . $context['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';
if (!empty($context['print_custom_fields']['icons']))
{
foreach ($context['print_custom_fields']['icons'] as $field)
if (!empty($field['output_html']))
echo '
<li class="custom_field">', $field['output_html'], '</li>';
}
echo '
</ul>
<span id="userstatus">
', $context['can_send_pm'] ? '<a href="' . $context['member']['online']['href'] . '" title="' . $context['member']['online']['text'] . '" rel="nofollow">' : '', $settings['use_image_buttons'] ? '<span class="' . ($context['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $context['member']['online']['text'] . '"></span>' : $context['member']['online']['label'], $context['can_send_pm'] ? '</a>' : '', $settings['use_image_buttons'] ? '<span class="smalltext"> ' . $context['member']['online']['label'] . '</span>' : '';
if (!empty($context['can_have_buddy']) && !$context['user']['is_owner'])
echo '
<br>
<a href="', $scripturl, '?action=buddy;u=', $context['id_member'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['buddy_' . ($context['member']['is_buddy'] ? 'remove' : 'add')], '</a>';
echo '
</span>';
if (!$context['user']['is_owner'] && $context['can_send_pm'])
echo '
<a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], '" class="infolinks">', $txt['profile_sendpm_short'], '</a>';
echo '
<a href="', $scripturl, '?action=profile;area=showposts;u=', $context['id_member'], '" class="infolinks">', $txt['showPosts'], '</a>';
if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled']))
echo '
<a href="', $scripturl, '?action=profile;area=showdrafts;u=', $context['id_member'], '" class="infolinks">', $txt['drafts_show'], '</a>';
echo '
<a href="', $scripturl, '?action=profile;area=statistics;u=', $context['id_member'], '" class="infolinks">', $txt['statPanel'], '</a>';
if (!empty($context['print_custom_fields']['bottom_poster']))
{
$fields = '';
foreach ($context['print_custom_fields']['bottom_poster'] as $field)
if (!empty($field['output_html']))
$fields .= '
<li>' . $field['output_html'] . '</li>';
if (!empty($fields))
echo '
<div class="custom_fields_bottom">
<ul class="nolist">', $fields, '
</ul>
</div>';
}
echo '
</div><!-- #basicinfo -->
<div id="detailedinfo">
<dl class="settings">';
if ($context['user']['is_owner'] || $context['user']['is_admin'])
echo '
<dt>', $txt['username'], ': </dt>
<dd>', $context['member']['username'], '</dd>';
if (!isset($context['disabled_fields']['posts']))
echo '
<dt>', $txt['profile_posts'], ': </dt>
<dd>', $context['member']['posts'], ' (', $context['member']['posts_per_day'], ' ', $txt['posts_per_day'], ')</dd>';
if ($context['member']['show_email'])
echo '
<dt>', $txt['email'], ': </dt>
<dd><a href="mailto:', $context['member']['email'], '">', $context['member']['email'], '</a></dd>';
if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title']))
echo '
<dt>', $txt['custom_title'], ': </dt>
<dd>', $context['member']['title'], '</dd>';
if (!empty($context['member']['blurb']))
echo '
<dt>', $txt['personal_text'], ': </dt>
<dd>', $context['member']['blurb'], '</dd>';
echo '
<dt>', $txt['age'], ':</dt>
<dd>', $context['member']['age'] . ($context['member']['today_is_birthday'] ? ' <img src="' . $settings['images_url'] . '/cake.png" alt="">' : ''), '</dd>';
echo '
</dl>';
if (!empty($context['print_custom_fields']['standard']))
{
$fields = array();
foreach ($context['print_custom_fields']['standard'] as $field)
if (!empty($field['output_html']))
$fields[] = $field;
if (count($fields) > 0)
{
echo '
<dl class="settings">';
foreach ($fields as $field)
echo '
<dt>', $field['name'], ':</dt>
<dd>', $field['output_html'], '</dd>';
echo '
</dl>';
}
}
echo '
<dl class="settings noborder">';
if ($context['can_view_warning'] && $context['member']['warning'])
{
echo '
<dt>', $txt['profile_warning_level'], ': </dt>
<dd>
<a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=', ($context['can_issue_warning'] && !$context['user']['is_owner'] ? 'issuewarning' : 'viewwarning'), '">', $context['member']['warning'], '%</a>';
if (!empty($context['warning_status']))
echo '
<span class="smalltext">(', $context['warning_status'], ')</span>';
echo '
</dd>';
}
if (!empty($context['activate_message']) || !empty($context['member']['bans']))
{
if (!empty($context['activate_message']))
echo '
<dt class="clear">
<span class="alert">', $context['activate_message'], '</span> (<a href="', $context['activate_link'], '"', ($context['activate_type'] == 4 ? ' class="you_sure" data-confirm="' . $txt['profileConfirm'] . '"' : ''), '>', $context['activate_link_text'], '</a>)
</dt>';
if (!empty($context['member']['bans']))
{
echo '
<dt class="clear">
<span class="alert">', $txt['user_is_banned'], '</span> [<a href="#" onclick="document.getElementById(\'ban_info\').classList.toggle(\'hidden\');return false;">' . $txt['view_ban'] . '</a>]
</dt>
<dt class="clear hidden" id="ban_info">
<strong>', $txt['user_banned_by_following'], ':</strong>';
foreach ($context['member']['bans'] as $ban)
echo '
<br>
<span class="smalltext">', $ban['explanation'], '</span>';
echo '
</dt>';
}
}
echo '
<dt>', $txt['date_registered'], ': </dt>
<dd>', $context['member']['registered'], '</dd>';
if ($context['can_see_ip'])
{
if (!empty($context['member']['ip']))
echo '
<dt>', $txt['ip'], ': </dt>
<dd><a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['member']['ip'], ';u=', $context['member']['id'], '">', $context['member']['ip'], '</a></dd>';
if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip']))
echo '
<dt>', $txt['hostname'], ': </dt>
<dd>', $context['member']['hostname'], '</dd>';
}
echo '
<dt>', $txt['local_time'], ':</dt>
<dd>', $context['member']['local_time'], '</dd>';
if (!empty($modSettings['userLanguage']) && !empty($context['member']['language']))
echo '
<dt>', $txt['language'], ':</dt>
<dd>', $context['member']['language'], '</dd>';
if ($context['member']['show_last_login'])
echo '
<dt>', $txt['lastLoggedIn'], ': </dt>
<dd>', $context['member']['last_login'], (!empty($context['member']['is_hidden']) ? ' (' . $txt['hidden'] . ')' : ''), '</dd>';
echo '
</dl>';
if (!empty($context['print_custom_fields']['above_signature']))
{
$fields = '';
foreach ($context['print_custom_fields']['above_signature'] as $field)
if (!empty($field['output_html']))
$fields .= '
<li>' . $field['output_html'] . '</li>';
if (!empty($fields))
echo '
<div class="custom_fields_above_signature">
<ul class="nolist">', $fields, '
</ul>
</div>';
}
if ($context['signature_enabled'] && !empty($context['member']['signature']))
echo '
<div class="signature">
<h5>', $txt['signature'], ':</h5>
', $context['member']['signature'], '
</div>';
if (!empty($context['print_custom_fields']['below_signature']))
{
$fields = '';
foreach ($context['print_custom_fields']['below_signature'] as $field)
if (!empty($field['output_html']))
$fields .= '
<li>' . $field['output_html'] . '</li>';
if (!empty($fields))
echo '
<div class="custom_fields_below_signature">
<ul class="nolist">', $fields, '
</ul>
</div>';
}
echo '
</div><!-- #detailedinfo -->
</div><!-- #profileview -->';
}
function template_showPosts()
{
global $context, $scripturl, $txt;
echo '
<div class="cat_bar">
<h3 class="catbg">
', (!isset($context['attachments']) && empty($context['is_topics']) ? $txt['showMessages'] : (!empty($context['is_topics']) ? $txt['showTopics'] : $txt['showAttachments'])), ' - ', $context['member']['name'], '
</h3>
</div>', !empty($context['page_index']) ? '
<div class="pagesection">
<div class="pagelinks">' . $context['page_index'] . '</div>
</div>' : '';
if (!isset($context['attachments']))
{
foreach ($context['posts'] as $post)
{
echo '
<div class="', $post['css_class'], '">
<div class="counter">', $post['counter'], '</div>
<div class="topic_details">
<h5>
<strong><a href="', $scripturl, '?board=', $post['board']['id'], '.0">', $post['board']['name'], '</a> / <a href="', $scripturl, '?topic=', $post['topic'], '.', $post['start'], '#msg', $post['id'], '">', $post['subject'], '</a></strong>
</h5>
<span class="smalltext">', $post['time'], '</span>
</div>';
if (!$post['approved'])
echo '
<div class="noticebox">
', $txt['post_awaiting_approval'], '
</div>';
echo '
<div class="post">
<div class="inner">
', $post['body'], '
</div>
</div><!-- .post -->';
template_quickbuttons($post['quickbuttons'], 'profile_showposts');
echo '
</div><!-- .', $post['css_class'], ' -->';
}
}
else
template_show_list('attachments');
if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts'])))
echo '
<div class="windowbg">
', isset($context['attachments']) ? $txt['show_attachments_none'] : ($context['is_topics'] ? $txt['show_topics_none'] : $txt['show_posts_none']), '
</div>';
if (!empty($context['page_index']))
echo '
<div class="pagesection">
<div class="pagelinks">', $context['page_index'], '</div>
</div>';
}
function template_showAlerts()
{
global $context, $txt, $scripturl;
if (!empty($context['update_message']))
echo '
<div class="infobox">
', $context['update_message'], '
</div>';
echo '
<div class="cat_bar">
<h3 class="catbg">
', $txt['alerts'], ' - ', $context['member']['name'], '
</h3>
</div>';
if (empty($context['alerts']))
echo '
<div class="information">
', $txt['alerts_none'], '
</div>';
else
{
if ($context['showCheckboxes'])
echo '
<form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;save" method="post" accept-charset="', $context['character_set'], '" id="mark_all">';
echo '
<table id="alerts" class="table_grid">';
foreach ($context['alerts'] as $id => $alert)
{
echo '
<tr class="windowbg">
<td class="alert_image">
<div>
', empty($alert['sender']['avatar']['image']) ? '' : $alert['sender']['avatar']['image'] . '
', $alert['icon'], '
</div>
</td>
<td class="alert_text">
<div>', $alert['text'], '</div>
<time class="alert_inline_time" datetime="', $alert['alert_time'], '">', $alert['time'], '</time>
</td>
<td class="alert_time">
<time datetime="', $alert['alert_time'], '">', $alert['time'], '</time>
</td>
<td class="alert_buttons">';
template_quickbuttons($alert['quickbuttons'], 'profile_alerts');
echo '
</td>
</tr>';
}
echo '
</table>
<div class="pagesection">
<div class="floatleft">
', $context['pagination'], '
</div>
<div class="floatright">';
if ($context['showCheckboxes'])
echo '
', $txt['check_all'], ': <input type="checkbox" name="select_all" id="select_all">
<select name="mark_as">
<option value="read">', $txt['quick_mod_markread'], '</option>
<option value="unread">', $txt['quick_mod_markunread'], '</option>
<option value="remove">', $txt['quick_mod_remove'], '</option>
</select>
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="hidden" name="start" value="', $context['start'], '">
<input type="submit" name="req" value="', $txt['quick_mod_go'], '" class="button you_sure">';
echo '
<a href="', $context['alert_purge_link'], '" class="button you_sure">', $txt['alert_purge'], '</a>
</div>
</div>';
if ($context['showCheckboxes'])
echo '
</form>';
}
}
function template_showDrafts()
{
global $context, $scripturl, $txt;
echo '
<div class="cat_bar">
<h3 class="catbg">
', $txt['drafts'], ' - ', $context['member']['name'], '
</h3>
</div>', !empty($context['page_index']) ? '
<div class="pagesection">
<div class="pagelinks">' . $context['page_index'] . '</div>
</div>' : '';
if (empty($context['drafts']))
echo '
<div class="windowbg centertext">
', $txt['draft_none'], '
</div>';
else
{
foreach ($context['drafts'] as $draft)
{
echo '
<div class="windowbg">
<div class="counter">', $draft['counter'], '</div>
<div class="topic_details">
<h5>
<strong><a href="', $scripturl, '?board=', $draft['board']['id'], '.0">', $draft['board']['name'], '</a> / ', $draft['topic']['link'], '</strong> ';
if (!empty($draft['sticky']))
echo '
<span class="main_icons sticky" title="', $txt['sticky_topic'], '"></span>';
if (!empty($draft['locked']))
echo '
<span class="main_icons lock" title="', $txt['locked_topic'], '"></span>';
echo '
</h5>
<span class="smalltext">« <strong>', $txt['on'], ':</strong> ', $draft['time'], ' »</span>
</div><!-- .topic_details -->
<div class="list_posts">
', $draft['body'], '
</div>
<div class="floatright">';
template_quickbuttons($draft['quickbuttons'], 'profile_drafts');
echo '
</div><!-- .floatright -->
</div><!-- .windowbg -->';
}
}
echo '
<div class="pagesection">
<div class="pagelinks">', $context['page_index'], '</div>
</div>';
}
function template_editBuddies()
{
global $context, $scripturl, $txt;
if (!empty($context['saved_successful']))
echo '
<div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>';
elseif (!empty($context['saved_failed']))
echo '
<div class="errorbox">', $context['saved_failed'], '</div>';
echo '
<div id="edit_buddies">
<div class="cat_bar">
<h3 class="catbg">
<span class="main_icons people icon"></span> ', $txt['editBuddies'], '
</h3>
</div>
<table class="table_grid">
<thead>
<tr class="title_bar">
<th scope="col" class="quarter_table buddy_link">', $txt['name'], '</th>
<th scope="col" class="buddy_status">', $txt['status'], '</th>';
if ($context['can_moderate_forum'])
echo '
<th scope="col" class="buddy_email">', $txt['email'], '</th>';
if (!empty($context['custom_pf']))
foreach ($context['custom_pf'] as $column)
echo '
<th scope="col" class="buddy_custom_fields">', $column['label'], '</th>';
echo '
<th scope="col" class="buddy_remove">', $txt['remove'], '</th>
</tr>
</thead>
<tbody>';
if (empty($context['buddies']))
echo '
<tr class="windowbg">
<td colspan="', $context['can_moderate_forum'] ? '10' : '9', '">
<strong>', $txt['no_buddies'], '</strong>
</td>
</tr>';
else
{
foreach ($context['buddies'] as $buddy)
{
echo '
<tr class="windowbg">
<td class="buddy_link">', $buddy['link'], '</td>
<td class="centertext buddy_status">
<a href="', $buddy['online']['href'], '"><span class="' . ($buddy['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $buddy['online']['text'] . '"></span></a>
</td>';
if ($buddy['show_email'])
echo '
<td class="buddy_email centertext">
<a href="mailto:' . $buddy['email'] . '" rel="nofollow"><span class="main_icons mail icon" title="' . $txt['email'] . ' ' . $buddy['name'] . '"></span></a>
</td>';
if (!empty($context['custom_pf']))
foreach ($context['custom_pf'] as $key => $column)
echo '
<td class="lefttext buddy_custom_fields">', $buddy['options'][$key], '</td>';
echo '
<td class="centertext buddy_remove">
<a href="', $scripturl, '?action=profile;area=lists;sa=buddies;u=', $context['id_member'], ';remove=', $buddy['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="main_icons delete" title="', $txt['buddy_remove'], '"></span></a>
</td>
</tr>';
}
}
echo '
</tbody>
</table>
</div><!-- #edit_buddies -->';
echo '
<form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=buddies" method="post" accept-charset="', $context['character_set'], '">
<div class="cat_bar">
<h3 class="catbg">', $txt['buddy_add'], '</h3>
</div>
<div class="information">
<dl class="settings">
<dt>
<label for="new_buddy"><strong>', $txt['who_member'], ':</strong></label>
</dt>
<dd>
<input type="text" name="new_buddy" id="new_buddy" size="30">
<input type="submit" value="', $txt['buddy_add_button'], '" class="button floatnone">
</dd>
</dl>
</div>';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
</form>
<script>
var oAddBuddySuggest = new smc_AutoSuggest({
sSelf: \'oAddBuddySuggest\',
sSessionId: smf_session_id,
sSessionVar: smf_session_var,
sSuggestId: \'new_buddy\',
sControlId: \'new_buddy\',
sSearchType: \'member\',
sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
bItemList: false
});
</script>';
}
function template_editIgnoreList()
{
global $context, $scripturl, $txt;
if (!empty($context['saved_successful']))
echo '
<div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>';
elseif (!empty($context['saved_failed']))
echo '
<div class="errorbox">', $context['saved_failed'], '</div>';
echo '
<div id="edit_buddies">
<div class="cat_bar">
<h3 class="catbg profile_hd">
', $txt['editIgnoreList'], '
</h3>
</div>
<table class="table_grid">
<thead>
<tr class="title_bar">
<th scope="col" class="quarter_table buddy_link">', $txt['name'], '</th>
<th scope="col" class="buddy_status">', $txt['status'], '</th>';
if ($context['can_moderate_forum'])
echo '
<th scope="col" class="buddy_email">', $txt['email'], '</th>';
echo '
<th scope="col" class="buddy_remove">', $txt['ignore_remove'], '</th>
</tr>
</thead>
<tbody>';
if (empty($context['ignore_list']))
echo '
<tr class="windowbg">
<td colspan="', $context['can_moderate_forum'] ? '4' : '3', '">
<strong>', $txt['no_ignore'], '</strong>
</td>
</tr>';
foreach ($context['ignore_list'] as $member)
{
echo '
<tr class="windowbg">
<td class="buddy_link">', $member['link'], '</td>
<td class="centertext buddy_status">
<a href="', $member['online']['href'], '"><span class="' . ($member['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $member['online']['text'] . '"></span></a>
</td>';
if ($context['can_moderate_forum'])
echo '
<td class="centertext buddy_email">
<a href="mailto:' . $member['email'] . '" rel="nofollow"><span class="main_icons mail icon" title="' . $txt['email'] . ' ' . $member['name'] . '"></span></a>
</td>';
echo '
<td class="centertext buddy_remove">
<a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=ignore;remove=', $member['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="main_icons delete" title="', $txt['ignore_remove'], '"></span></a>
</td>
</tr>';
}
echo '
</tbody>
</table>
</div><!-- #edit_buddies -->';
echo '
<form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=ignore" method="post" accept-charset="', $context['character_set'], '">
<div class="cat_bar">
<h3 class="catbg">', $txt['ignore_add'], '</h3>
</div>
<div class="information">
<dl class="settings">
<dt>
<label for="new_buddy"><strong>', $txt['who_member'], ':</strong></label>
</dt>
<dd>
<input type="text" name="new_ignore" id="new_ignore" size="30">
<input type="submit" value="', $txt['ignore_add_button'], '" class="button">
</dd>
</dl>
</div>';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
</form>
<script>
var oAddIgnoreSuggest = new smc_AutoSuggest({
sSelf: \'oAddIgnoreSuggest\',
sSessionId: \'', $context['session_id'], '\',
sSessionVar: \'', $context['session_var'], '\',
sSuggestId: \'new_ignore\',
sControlId: \'new_ignore\',
sSearchType: \'member\',
sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
bItemList: false
});
</script>';
}
function template_trackActivity()
{
global $context, $scripturl, $txt;
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['view_ips_by'], ' ', $context['member']['name'], '</h3>
</div>';
echo '
<div id="tracking" class="windowbg">
<dl class="settings noborder">
<dt>
', $txt['most_recent_ip'], ':
', (empty($context['last_ip2']) ? '' : '<br>
<span class="smalltext">(<a href="' . $scripturl . '?action=helpadmin;help=whytwoip" onclick="return reqOverlayDiv(this.href);">' . $txt['why_two_ip_address'] . '</a>)</span>'), '
</dt>
<dd>
<a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip'], ';u=', $context['member']['id'], '">', $context['last_ip'], '</a>';
if (!empty($context['last_ip2']))
echo '
, <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip2'], ';u=', $context['member']['id'], '">', $context['last_ip2'], '</a>';
echo '
</dd>';
echo '
<dt>', $txt['ips_in_messages'], ':</dt>
<dd>
', (count($context['ips']) > 0 ? implode(', ', $context['ips']) : '(' . $txt['none'] . ')'), '
</dd>
<dt>', $txt['ips_in_errors'], ':</dt>
<dd>
', (count($context['error_ips']) > 0 ? implode(', ', $context['error_ips']) : '(' . $txt['none'] . ')'), '
</dd>';
echo '
<dt>', $txt['members_in_range'], ':</dt>
<dd>
', (count($context['members_in_range']) > 0 ? implode(', ', $context['members_in_range']) : '(' . $txt['none'] . ')'), '
</dd>
</dl>
</div><!-- #tracking -->';
template_show_list('track_user_list');
}
function template_trackIP()
{
global $context, $txt;
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['trackIP'], '</h3>
</div>
<div class="windowbg">
<form action="', $context['base_url'], '" method="post" accept-charset="', $context['character_set'], '">
<dl class="settings">
<dt>
<label for="searchip"><strong>', $txt['enter_ip'], ':</strong></label>
</dt>
<dd>
<input type="text" name="searchip" value="', $context['ip'], '">
</dd>
</dl>
<input type="submit" value="', $txt['trackIP'], '" class="button">
</form>
</div>
<br>';
if ($context['single_ip'])
{
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['whois_title'], ' ', $context['ip'], '</h3>
</div>
<div class="windowbg">';
foreach ($context['whois_servers'] as $server)
echo '
<a href="', $server['url'], '" target="_blank" rel="noopener"', '>', $server['name'], '</a><br>';
echo '
</div>
<br>';
}
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['members_from_ip'], ' ', $context['ip'], '</h3>
</div>';
if (empty($context['ips']))
echo '
<p class="windowbg description">
<em>', $txt['no_members_from_ip'], '</em>
</p>';
else
{
echo '
<table class="table_grid">
<thead>
<tr class="title_bar">
<th scope="col">', $txt['ip_address'], '</th>
<th scope="col">', $txt['display_name'], '</th>
</tr>
</thead>
<tbody>';
foreach ($context['ips'] as $ip => $memberlist)
echo '
<tr class="windowbg">
<td><a href="', $context['base_url'], ';searchip=', $ip, '">', $ip, '</a></td>
<td>', implode(', ', $memberlist), '</td>
</tr>';
echo '
</tbody>
</table>';
}
echo '
<br>';
template_show_list('track_message_list');
echo '<br>';
template_show_list('track_user_list');
if (!empty($context['additional_track_lists']))
{
foreach ($context['additional_track_lists'] as $list)
{
echo '<br>';
template_show_list($list);
}
}
}
function template_showPermissions()
{
global $context, $scripturl, $txt;
echo '
<div class="cat_bar">
<h3 class="catbg profile_hd">
', $txt['showPermissions'], '
</h3>
</div>';
if ($context['member']['has_all_permissions'])
echo '
<div class="information">', $txt['showPermissions_all'], '</div>';
else
{
echo '
<div class="information">', $txt['showPermissions_help'], '</div>
<div id="permissions" class="flow_hidden">';
if (!empty($context['no_access_boards']))
{
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['showPermissions_restricted_boards'], '</h3>
</div>
<div class="windowbg smalltext">
', $txt['showPermissions_restricted_boards_desc'], ':<br>';
foreach ($context['no_access_boards'] as $no_access_board)
echo '
<a href="', $scripturl, '?board=', $no_access_board['id'], '.0">', $no_access_board['name'], '</a>', $no_access_board['is_last'] ? '' : ', ';
echo '
</div>';
}
echo '
<div class="tborder">
<div class="cat_bar">
<h3 class="catbg">', $txt['showPermissions_general'], '</h3>
</div>';
if (!empty($context['member']['permissions']['general']))
{
echo '
<table class="table_grid">
<thead>
<tr class="title_bar">
<th class="lefttext half_table">', $txt['showPermissions_permission'], '</th>
<th class="lefttext half_table">', $txt['showPermissions_status'], '</th>
</tr>
</thead>
<tbody>';
foreach ($context['member']['permissions']['general'] as $permission)
{
echo '
<tr class="windowbg">
<td title="', $permission['id'], '">
', $permission['is_denied'] ? '<del>' . $permission['name'] . '</del>' : $permission['name'], '
</td>
<td class="smalltext">';
if ($permission['is_denied'])
echo '
<span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>';
else
echo '
', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']);
echo '
</td>
</tr>';
}
echo '
</tbody>
</table>
</div><!-- .tborder -->
<br>';
}
else
echo '
<p class="windowbg">', $txt['showPermissions_none_general'], '</p>';
echo '
<form action="' . $scripturl . '?action=profile;u=', $context['id_member'], ';area=permissions#board_permissions" method="post" accept-charset="', $context['character_set'], '">
<div class="cat_bar">
<h3 class="catbg">
<a id="board_permissions"></a>', $txt['showPermissions_select'], ':
<select name="board" onchange="if (this.options[this.selectedIndex].value) this.form.submit();">
<option value="0"', $context['board'] == 0 ? ' selected' : '', '>', $txt['showPermissions_global'], '</option>';
if (!empty($context['boards']))
echo '
<option value="" disabled>---------------------------</option>';
foreach ($context['boards'] as $board)
echo '
<option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['name'], ' (', $board['profile_name'], ')</option>';
echo '
</select>
</h3>
</div><!-- .cat_bar -->
</form>';
if (!empty($context['member']['permissions']['board']))
{
echo '
<table class="table_grid">
<thead>
<tr class="title_bar">
<th class="lefttext half_table">', $txt['showPermissions_permission'], '</th>
<th class="lefttext half_table">', $txt['showPermissions_status'], '</th>
</tr>
</thead>
<tbody>';
foreach ($context['member']['permissions']['board'] as $permission)
{
echo '
<tr class="windowbg">
<td title="', $permission['id'], '">
', $permission['is_denied'] ? '<del>' . $permission['name'] . '</del>' : $permission['name'], '
</td>
<td class="smalltext">';
if ($permission['is_denied'])
echo '
<span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>';
else
echo '
', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']);
echo '
</td>
</tr>';
}
echo '
</tbody>
</table>';
}
else
echo '
<p class="windowbg">', $txt['showPermissions_none_board'], '</p>';
echo '
</div><!-- #permissions -->';
}
}
function template_statPanel()
{
global $context, $txt;
echo '
<div id="profileview" class="roundframe noup">
<div id="generalstats">
<dl class="stats">';
foreach ($context['text_stats'] as $key => $stat)
{
echo '
<dt>', $txt['statPanel_' . $key], '</dt>';
if (!empty($stat['url']))
echo '
<dd><a href="', $stat['url'], '">', $stat['text'], '</a></dd>';
else
echo '
<dd>', $stat['text'], '</dd>';
}
echo '
</dl>
</div>';
echo '
<div id="activitytime" class="flow_hidden">
<div class="title_bar">
<h3 class="titlebg">
<span class="main_icons history"></span> ', $txt['statPanel_activityTime'], '
</h3>
</div>';
if (empty($context['posts_by_time']))
echo '
<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
else
{
echo '
<ul class="activity_stats flow_hidden">';
foreach ($context['posts_by_time'] as $time_of_day)
echo '
<li>
<div class="generic_bar vertical">
<div class="bar" style="height: ', (int) $time_of_day['relative_percent'], '%;">
<span>', sprintf($txt['statPanel_activityTime_posts'], $time_of_day['posts'], $time_of_day['posts_percent']), '</span>
</div>
</div>
<span class="stats_hour">', $time_of_day['hour_format'], '</span>
</li>';
echo '
</ul>';
}
echo '
</div><!-- #activitytime -->';
echo '
<div class="flow_hidden">
<div class="half_content">
<div class="title_bar">
<h3 class="titlebg">
<span class="main_icons replies"></span> ', $txt['statPanel_topBoards'], '
</h3>
</div>';
if (empty($context['popular_boards']))
echo '
<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
else
{
echo '
<dl class="stats">';
foreach ($context['popular_boards'] as $board)
{
echo '
<dt>', $board['link'], '</dt>
<dd>
<div class="profile_pie" style="background-position: -', ((int) ($board['posts_percent'] / 5) * 20), 'px 0;" title="', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '">
', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '
</div>
', empty($context['hide_num_posts']) ? $board['posts'] : '', '
</dd>';
}
echo '
</dl>';
}
echo '
</div><!-- .half_content -->
<div class="half_content">
<div class="title_bar">
<h3 class="titlebg">
<span class="main_icons replies"></span> ', $txt['statPanel_topBoardsActivity'], '
</h3>
</div>';
if (empty($context['board_activity']))
echo '
<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
else
{
echo '
<dl class="stats">';
foreach ($context['board_activity'] as $activity)
{
echo '
<dt>', $activity['link'], '</dt>
<dd>
<div class="profile_pie" style="background-position: -', ((int) ($activity['posts_percent'] / 5) * 20), 'px 0;" title="', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '">
', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '
</div>
', $activity['percent'], '%
</dd>';
}
echo '
</dl>';
}
echo '
</div><!-- .half_content -->
</div><!-- .flow_hidden -->';
echo '
</div><!-- #profileview -->';
}
function template_edit_options()
{
global $context, $scripturl, $txt, $modSettings;
$url = !empty($context['profile_custom_submit_url']) ? $context['profile_custom_submit_url'] : $scripturl . '?action=profile;area=' . $context['menu_item_selected'] . ';u=' . $context['id_member'];
$url = $context['require_password'] && !empty($modSettings['force_ssl']) ? strtr($url, array('http://' => 'https://')) : $url;
echo '
<form action="', $url, '" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator" enctype="multipart/form-data"', ($context['menu_item_selected'] == 'account' ? ' autocomplete="off"' : ''), '>
<div style="height:0;overflow:hidden;">
<input type="text" id="autocompleteFakeName">
<input type="password" id="autocompleteFakePassword">
</div>
<div class="cat_bar">
<h3 class="catbg profile_hd">';
if (!empty($context['profile_header_text']))
echo '
', $context['profile_header_text'];
else
echo '
', $txt['profile'];
echo '
</h3>
</div>';
if ($context['page_desc'])
echo '
<p class="information">', $context['page_desc'], '</p>';
echo '
<div class="roundframe">';
if (!empty($context['profile_prehtml']))
echo '
<div>', $context['profile_prehtml'], '</div>';
if (!empty($context['profile_fields']))
echo '
<dl class="settings">';
$lastItem = 'hr';
foreach ($context['profile_fields'] as $key => $field)
{
if ($lastItem == 'hr' && $field['type'] == 'hr')
continue;
$lastItem = $field['type'];
if ($field['type'] == 'hr')
echo '
</dl>
<hr>
<dl class="settings">';
elseif ($field['type'] == 'callback')
{
if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func']))
{
$callback_func = 'template_profile_' . $field['callback_func'];
$callback_func();
}
}
else
{
echo '
<dt>
<strong', !empty($field['is_error']) ? ' class="error"' : '', '>', $field['type'] !== 'label' ? '<label for="' . $key . '">' : '', $field['label'], $field['type'] !== 'label' ? '</label>' : '', '</strong>';
if (!empty($field['subtext']))
echo '
<br>
<span class="smalltext">', $field['subtext'], '</span>';
echo '
</dt>
<dd>';
if (!empty($field['preinput']))
echo '
', $field['preinput'];
if ($field['type'] == 'label')
echo '
', $field['value'];
elseif (in_array($field['type'], array('int', 'float', 'text', 'password', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'number', 'time', 'url')))
{
if ($field['type'] == 'int' || $field['type'] == 'float')
$type = 'number';
else
$type = $field['type'];
$step = $field['type'] == 'float' ? ' step="0.1"' : '';
echo '
<input type="', $type, '" name="', $key, '" id="', $key, '" size="', empty($field['size']) ? 30 : $field['size'], '" value="', $field['value'], '" ', $field['input_attr'], ' ', $step, '>';
}
elseif ($field['type'] == 'check')
echo '
<input type="hidden" name="', $key, '" value="0">
<input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" ', $field['input_attr'], '>';
elseif ($field['type'] == 'select')
{
echo '
<select name="', $key, '" id="', $key, '">';
if (isset($field['options']))
{
if (!is_array($field['options']))
$field['options'] = $field['options']();
if (is_array($field['options']))
foreach ($field['options'] as $value => $name)
echo '
<option value="' . $value . '"', (!empty($field['disabled_options']) && is_array($field['disabled_options']) && in_array($value, $field['disabled_options'], true) ? ' disabled' : ($value == $field['value'] ? ' selected' : '')), '>', $name, '</option>';
}
echo '
</select>';
}
if (!empty($field['postinput']))
echo '
', $field['postinput'];
echo '
</dd>';
}
}
if (!empty($context['profile_fields']))
echo '
</dl>';
if (!empty($context['custom_fields']))
{
if ($lastItem != 'hr')
echo '
<hr>';
echo '
<dl class="settings">';
foreach ($context['custom_fields'] as $field)
echo '
<dt>
<strong>', $field['name'], ': </strong><br>
<span class="smalltext">', $field['desc'], '</span>
</dt>
<dd>
', $field['input_html'], '
</dd>';
echo '
</dl>';
}
if (!empty($context['profile_posthtml']))
echo '
<div>', $context['profile_posthtml'], '</div>';
if ($context['require_password'])
echo '
<dl class="settings">
<dt>
<strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '><label for="oldpasswrd">', $txt['current_password'], ': </label></strong><br>
<span class="smalltext">', $txt['required_security_reasons'], '</span>
</dt>
<dd>
<input type="password" name="oldpasswrd" id="oldpasswrd" size="20">
</dd>
</dl>';
if (!empty($context['submit_button_text']))
echo '
<input type="submit" name="save" value="', $context['submit_button_text'], '" class="button floatright">';
else
echo '
<input type="submit" name="save" value="', $txt['change_profile'], '" class="button floatright">';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="hidden" name="u" value="', $context['id_member'], '">
<input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
</div><!-- .roundframe -->
</form>';
if (!empty($context['show_spellchecking']))
echo '
<form name="spell_form" id="spell_form" method="post" accept-charset="', $context['character_set'], '" target="spellWindow" action="', $scripturl, '?action=spellcheck"><input type="hidden" name="spellstring" value=""></form>';
}
function template_profile_pm_settings()
{
global $context, $modSettings, $txt;
echo '
<dt>
<label for="pm_prefs">', $txt['pm_display_mode'], ':</label>
</dt>
<dd>
<select name="pm_prefs" id="pm_prefs">
<option value="0"', $context['display_mode'] == 0 ? ' selected' : '', '>', $txt['pm_display_mode_all'], '</option>
<option value="1"', $context['display_mode'] == 1 ? ' selected' : '', '>', $txt['pm_display_mode_one'], '</option>
<option value="2"', $context['display_mode'] == 2 ? ' selected' : '', '>', $txt['pm_display_mode_linked'], '</option>
</select>
</dd>
<dt>
<label for="view_newest_pm_first">', $txt['recent_pms_at_top'], '</label>
</dt>
<dd>
<input type="hidden" name="default_options[view_newest_pm_first]" value="0">
<input type="checkbox" name="default_options[view_newest_pm_first]" id="view_newest_pm_first" value="1"', !empty($context['member']['options']['view_newest_pm_first']) ? ' checked' : '', '>
</dd>
</dl>
<hr>
<dl class="settings">
<dt>
<label for="pm_receive_from">', $txt['pm_receive_from'], '</label>
</dt>
<dd>
<select name="pm_receive_from" id="pm_receive_from">
<option value="0"', empty($context['receive_from']) || (empty($modSettings['enable_buddylist']) && $context['receive_from'] < 3) ? ' selected' : '', '>', $txt['pm_receive_from_everyone'], '</option>';
if (!empty($modSettings['enable_buddylist']))
echo '
<option value="1"', !empty($context['receive_from']) && $context['receive_from'] == 1 ? ' selected' : '', '>', $txt['pm_receive_from_ignore'], '</option>
<option value="2"', !empty($context['receive_from']) && $context['receive_from'] == 2 ? ' selected' : '', '>', $txt['pm_receive_from_buddies'], '</option>';
echo '
<option value="3"', !empty($context['receive_from']) && $context['receive_from'] > 2 ? ' selected' : '', '>', $txt['pm_receive_from_admins'], '</option>
</select>
</dd>
<dt>
<label for="popup_messages">', $txt['popup_messages'], '</label>
</dt>
<dd>
<input type="hidden" name="default_options[popup_messages]" value="0">
<input type="checkbox" name="default_options[popup_messages]" id="popup_messages" value="1"', !empty($context['member']['options']['popup_messages']) ? ' checked' : '', '>
</dd>
</dl>
<hr>
<dl class="settings">
<dt>
<label for="pm_remove_inbox_label">', $txt['pm_remove_inbox_label'], '</label>
</dt>
<dd>
<input type="hidden" name="default_options[pm_remove_inbox_label]" value="0">
<input type="checkbox" name="default_options[pm_remove_inbox_label]" id="pm_remove_inbox_label" value="1"', !empty($context['member']['options']['pm_remove_inbox_label']) ? ' checked' : '', '>
</dd>';
}
function template_profile_theme_settings()
{
global $context, $modSettings;
$skeys = array_keys($context['theme_options']);
$first_option_key = array_shift($skeys);
$titled_section = false;
foreach ($context['theme_options'] as $i => $setting)
{
if (empty($setting) || !is_array($setting))
{
$empty_section = true;
for ($j=$i+1; $j < count($context['theme_options']); $j++)
{
if (!is_array($context['theme_options'][$j]))
break;
if (!isset($context['theme_options'][$j]['enabled']) || !empty($context['theme_options'][$j]['enabled']))
{
$empty_section = false;
break;
}
}
if ($empty_section)
{
if ($i === $first_option_key)
$first_option_key = array_shift($skeys);
continue;
}
if ($i !== $first_option_key)
echo '
</dl>
<hr>
<dl class="settings">';
if (is_string($setting) && !empty($setting))
{
$titled_section = true;
echo '
<dt><strong>' . $setting . '</strong></dt>
<dd></dd>';
}
else
$titled_section = false;
continue;
}
if (isset($setting['enabled']) && $setting['enabled'] === false)
{
if ($i === $first_option_key)
$first_option_key = array_shift($skeys);
continue;
}
$opts = array('calendar_start_day', 'topics_per_page', 'messages_per_page', 'display_quick_mod');
if (in_array($setting['id'], $opts) && !isset($context['member']['options'][$setting['id']]))
$context['member']['options'][$setting['id']] = 0;
if (!isset($setting['type']) || $setting['type'] == 'bool')
$setting['type'] = 'checkbox';
elseif ($setting['type'] == 'int' || $setting['type'] == 'integer')
$setting['type'] = 'number';
elseif ($setting['type'] == 'string')
$setting['type'] = 'text';
if (isset($setting['options']))
$setting['type'] = 'list';
echo '
<dt>
<label for="', $setting['id'], '">', !$titled_section ? '<strong>' : '', $setting['label'], !$titled_section ? '</strong>' : '', '</label>';
if (isset($setting['description']))
echo '
<br>
<span class="smalltext">', $setting['description'], '</span>';
echo '
</dt>
<dd>';
if ($setting['type'] == 'checkbox')
echo '
<input type="hidden" name="default_options[' . $setting['id'] . ']" value="0">
<input type="checkbox" name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', !empty($context['member']['options'][$setting['id']]) ? ' checked' : '', ' value="1">';
elseif ($setting['type'] == 'list')
{
echo '
<select name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', '>';
foreach ($setting['options'] as $value => $label)
echo '
<option value="', $value, '"', isset($context['member']['options'][$setting['id']]) && $value == $context['member']['options'][$setting['id']] ? ' selected' : '', '>', $label, '</option>';
echo '
</select>';
}
else
{
if (isset($setting['type']) && $setting['type'] == 'number')
{
$min = isset($setting['min']) ? ' min="' . $setting['min'] . '"' : ' min="0"';
$max = isset($setting['max']) ? ' max="' . $setting['max'] . '"' : '';
$step = isset($setting['step']) ? ' step="' . $setting['step'] . '"' : '';
echo '
<input type="number"', $min . $max . $step;
}
elseif (isset($setting['type']) && $setting['type'] == 'url')
echo '
<input type="url"';
else
echo '
<input type="text"';
echo ' name="default_options[', $setting['id'], ']" id="', $setting['id'], '" value="', isset($context['member']['options'][$setting['id']]) ? $context['member']['options'][$setting['id']] : $setting['value'], '"', $setting['type'] == 'number' ? ' size="5"' : '', '>';
}
echo '
</dd>';
}
}
function template_alert_configuration()
{
global $context, $txt, $scripturl, $modSettings;
echo '
<div class="cat_bar">
<h3 class="catbg">
', $txt['alert_prefs'], '
</h3>
</div>
<p class="information">
', (empty($context['description']) ? $txt['alert_prefs_desc'] : $context['description']), '
</p>
<form action="', $scripturl, '?', $context['action'], '" method="post" accept-charset="', $context['character_set'], '" id="notify_options" class="flow_hidden">
<div class="cat_bar">
<h3 class="catbg">
', $txt['notification_general'], '
</h3>
</div>
<div class="windowbg">
<dl class="settings">';
if ($context['can_disable_announce'])
echo '
<dt>
<label for="notify_announcements">', $txt['notify_important_email'], '</label>
</dt>
<dd>
<input type="hidden" name="notify_announcements" value="0">
<input type="checkbox" id="notify_announcements" name="notify_announcements" value="1"', !empty($context['member']['notify_announcements']) ? ' checked' : '', '>
</dd>';
if (!empty($modSettings['enable_ajax_alerts']))
echo '
<dt>
<label for="notify_send_body">', $txt['notify_alert_timeout'], '</label>
</dt>
<dd>
<input type="number" size="4" id="notify_alert_timeout" name="opt_alert_timeout" min="0" value="', $context['member']['alert_timeout'], '">
</dd>';
echo '
</dl>
</div><!-- .windowbg -->
<div class="cat_bar">
<h3 class="catbg">
', $txt['notify_what_how'], '
</h3>
</div>
<table class="table_grid">';
foreach ($context['alert_types'] as $alert_group => $alerts)
{
echo '
<tr class="title_bar">
<th>', $txt['alert_group_' . $alert_group], '</th>
<th>', $txt['receive_alert'], '</th>
<th>', $txt['receive_mail'], '</th>
</tr>
<tr class="windowbg">';
if (isset($context['alert_group_options'][$alert_group]))
{
foreach ($context['alert_group_options'][$alert_group] as $opts)
{
echo '
<tr class="windowbg">
<td colspan="3">';
$label = $txt['alert_opt_' . $opts[1]];
$label_pos = isset($opts['label']) ? $opts['label'] : '';
if ($label_pos == 'before')
echo '
<label for="opt_', $opts[1], '">', $label, '</label>';
$this_value = isset($context['alert_prefs'][$opts[1]]) ? $context['alert_prefs'][$opts[1]] : 0;
switch ($opts[0])
{
case 'check':
echo '
<input type="checkbox" name="opt_', $opts[1], '" id="opt_', $opts[1], '"', $this_value ? ' checked' : '', '>';
break;
case 'select':
echo '
<select name="opt_', $opts[1], '" id="opt_', $opts[1], '">';
foreach ($opts['opts'] as $k => $v)
echo '
<option value="', $k, '"', $this_value == $k ? ' selected' : '', '>', $v, '</option>';
echo '
</select>';
break;
}
if ($label_pos == 'after')
echo '
<label for="opt_', $opts[1], '">', $label, '</label>';
echo '
</td>
</tr>';
}
}
foreach ($alerts as $alert_id => $alert_details)
{
echo '
<tr class="windowbg">
<td>
', $txt['alert_' . $alert_id], isset($alert_details['help']) ? '<a href="' . $scripturl . '?action=helpadmin;help=' . $alert_details['help'] . '" onclick="return reqOverlayDiv(this.href);" class="help floatright"><span class="main_icons help" title="' . $txt['help'] . '"></span></a>' : '', '
</td>';
foreach ($context['alert_bits'] as $type => $bitmask)
{
echo '
<td class="centercol">';
$this_value = isset($context['alert_prefs'][$alert_id]) ? $context['alert_prefs'][$alert_id] : 0;
switch ($alert_details[$type])
{
case 'always':
echo '
<input type="checkbox" checked disabled>';
break;
case 'yes':
echo '
<input type="checkbox" name="', $type, '_', $alert_id, '"', ($this_value & $bitmask) ? ' checked' : '', '>';
break;
case 'never':
echo '
<input type="checkbox" disabled>';
break;
}
echo '
</td>';
}
echo '
</tr>';
}
}
echo '
</table>
<br>
<div>
<input id="notify_submit" type="submit" name="notify_submit" value="', $txt['notify_save'], '" class="button">
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">', !empty($context['token_check']) ? '
<input type="hidden" name="' . $context[$context['token_check'] . '_token_var'] . '" value="' . $context[$context['token_check'] . '_token'] . '">' : '', '
<input type="hidden" name="u" value="', $context['id_member'], '">
<input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
</div>
</form>
<br>';
}
function template_alert_notifications_topics()
{
global $txt;
echo '
<div class="cat_bar">
<h3 class="catbg">
', $txt['watched_topics'], '
</h3>
</div>
<p class="information">', $txt['watched_topics_desc'], '</p>
<br>';
template_show_list('topic_notification_list');
}
function template_alert_notifications_boards()
{
global $txt;
echo '
<div class="cat_bar">
<h3 class="catbg">
', $txt['watched_boards'], '
</h3>
</div>
<p class="information">', $txt['watched_boards_desc'], '</p>
<br>';
template_show_list('board_notification_list');
}
function template_groupMembership()
{
global $context, $scripturl, $txt;
echo '
<form action="', $scripturl, '?action=profile;area=groupmembership;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator">
<div class="cat_bar">
<h3 class="catbg profile_hd">
', $txt['profile'], '
</h3>
</div>
<p class="information">', $txt['groupMembership_info'], '</p>';
if (!empty($context['update_message']))
echo '
<div class="infobox">
', $context['update_message'], '.
</div>';
echo '
<div id="groups">';
if (!empty($context['group_request']))
{
echo '
<div class="groupmembership">
<div class="cat_bar">
<h3 class="catbg">', $txt['request_group_membership'], '</h3>
</div>
<div class="roundframe">
', $txt['request_group_membership_desc'], ':
<textarea name="reason" rows="4"></textarea>
<div class="righttext">
<input type="hidden" name="gid" value="', $context['group_request']['id'], '">
<input type="submit" name="req" value="', $txt['submit_request'], '" class="button">
</div>
</div>
</div><!-- .groupmembership -->';
}
else
{
echo '
<div class="title_bar">
<h3 class="titlebg">', $txt['current_membergroups'], '</h3>
</div>';
foreach ($context['groups']['member'] as $group)
{
echo '
<div class="windowbg" id="primdiv_', $group['id'], '">';
if ($context['can_edit_primary'])
echo '
<input type="radio" name="primary" id="primary_', $group['id'], '" value="', $group['id'], '"', $group['is_primary'] ? ' checked' : '', ' onclick="highlightSelected(\'primdiv_' . $group['id'] . '\');"', $group['can_be_primary'] ? '' : ' disabled', '>';
echo '
<label for="primary_', $group['id'], '"><strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '</label>';
if ($group['can_leave'])
echo '
<a href="' . $scripturl . '?action=profile;save;u=' . $context['id_member'] . ';area=groupmembership;' . $context['session_var'] . '=' . $context['session_id'] . ';gid=' . $group['id'] . ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '">' . $txt['leave_group'] . '</a>';
echo '
</div><!-- .windowbg -->';
}
if ($context['can_edit_primary'])
echo '
<div class="padding righttext">
<input type="submit" value="', $txt['make_primary'], '" class="button">
</div>';
if (!empty($context['groups']['available']))
{
echo '
<div class="title_bar">
<h3 class="titlebg">', $txt['available_groups'], '</h3>
</div>';
foreach ($context['groups']['available'] as $group)
{
echo '
<div class="windowbg">
<strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '';
if ($group['type'] == 3)
echo '
<a href="', $scripturl, '?action=profile;save;u=', $context['id_member'], ';area=groupmembership;', $context['session_var'], '=', $context['session_id'], ';gid=', $group['id'], ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '" class="button floatright">', $txt['join_group'], '</a>';
elseif ($group['type'] == 2 && $group['pending'])
echo '
<span class="floatright">', $txt['approval_pending'], '</span>';
elseif ($group['type'] == 2)
echo '
<a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=groupmembership;request=', $group['id'], '" class="button floatright">', $txt['request_group'], '</a>';
echo '
</div><!-- .windowbg -->';
}
}
echo '
<script>
var prevClass = "";
var prevDiv = "";
function highlightSelected(box)
{
if (prevClass != "")
{
prevDiv.className = prevClass;
}
prevDiv = document.getElementById(box);
prevClass = prevDiv.className;
prevDiv.className = "windowbg";
}';
if (isset($context['groups']['member'][$context['primary_group']]))
echo '
highlightSelected("primdiv_' . $context['primary_group'] . '");';
echo '
</script>';
}
echo '
</div><!-- #groups -->';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="hidden" name="u" value="', $context['id_member'], '">
</form>';
}
function template_ignoreboards()
{
global $context, $txt, $scripturl;
echo '
<form action="', $scripturl, '?action=profile;area=ignoreboards;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator">
<div class="cat_bar">
<h3 class="catbg profile_hd">
', $txt['profile'], '
</h3>
</div>
<p class="information">', $txt['ignoreboards_info'], '</p>
<div class="windowbg">
<div class="flow_hidden boardslist">
<ul>';
foreach ($context['categories'] as $category)
{
echo '
<li>
<a href="javascript:void(0);" onclick="selectBoards([', implode(', ', $category['child_ids']), '], \'creator\'); return false;">', $category['name'], '</a>
<ul>';
foreach ($category['boards'] as $board)
{
echo '
<li style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;">
<label for="ignore_brd', $board['id'], '"><input type="checkbox" id="brd', $board['id'], '" name="ignore_brd[', $board['id'], ']" value="', $board['id'], '"', $board['selected'] ? ' checked' : '', '> ', $board['name'], '</label>
</li>';
}
echo '
</ul>
</li>';
}
echo '
</ul>
</div><!-- .flow_hidden boardslist -->';
template_profile_save();
echo '
</div><!-- .windowbg -->
</form>
<br>';
}
function template_load_warning_variables()
{
global $modSettings, $context;
$context['warning_mode'] = array(
0 => 'none',
$modSettings['warning_watch'] => 'watched',
$modSettings['warning_moderate'] => 'moderated',
$modSettings['warning_mute'] => 'muted',
);
$context['current_warning_mode'] = $context['warning_mode'][0];
foreach ($context['warning_mode'] as $limit => $warning)
if ($context['member']['warning'] >= $limit)
$context['current_warning_mode'] = $warning;
}
function template_viewWarning()
{
global $context, $txt;
template_load_warning_variables();
echo '
<div class="cat_bar">
<h3 class="catbg profile_hd">
', sprintf($txt['profile_viewwarning_for_user'], $context['member']['name']), '
</h3>
</div>
<p class="information">', $txt['viewWarning_help'], '</p>
<div class="windowbg">
<dl class="settings">
<dt>
<strong>', $txt['profile_warning_name'], ':</strong>
</dt>
<dd>
', $context['member']['name'], '
</dd>
<dt>
<strong>', $txt['profile_warning_level'], ':</strong>
</dt>
<dd>
<div class="generic_bar warning_level ', $context['current_warning_mode'], '">
<div class="bar" style="width: ', $context['member']['warning'], '%;"></div>
<span>', $context['member']['warning'], '%</span>
</div>
</dd>';
if (!empty($context['level_effects'][$context['current_level']]))
echo '
<dt>
<strong>', $txt['profile_viewwarning_impact'], ':</strong>
</dt>
<dd>
', $context['level_effects'][$context['current_level']], '
</dd>';
echo '
</dl>
</div><!-- .windowbg -->';
template_show_list('view_warnings');
}
function template_issueWarning()
{
global $context, $scripturl, $txt;
template_load_warning_variables();
echo '
<script>
// Disable notification boxes as required.
function modifyWarnNotify()
{
disable = !document.getElementById(\'warn_notify\').checked;
document.getElementById(\'warn_sub\').disabled = disable;
document.getElementById(\'warn_body\').disabled = disable;
document.getElementById(\'warn_temp\').disabled = disable;
document.getElementById(\'new_template_link\').style.display = disable ? \'none\' : \'\';
document.getElementById(\'preview_button\').style.display = disable ? \'none\' : \'\';
}
// Warn template.
function populateNotifyTemplate()
{
index = document.getElementById(\'warn_temp\').value;
if (index == -1)
return false;
// Otherwise see what we can do...';
foreach ($context['notification_templates'] as $k => $type)
echo '
if (index == ', $k, ')
document.getElementById(\'warn_body\').value = "', strtr($type['body'], array('"' => "'", "\n" => '\\n', "\r" => '')), '";';
echo '
}
function updateSlider(slideAmount)
{
// Also set the right effect.
effectText = "";';
foreach ($context['level_effects'] as $limit => $text)
echo '
if (slideAmount >= ', $limit, ')
effectText = "', $text, '";';
echo '
setInnerHTML(document.getElementById(\'cur_level_div\'), slideAmount + \'% (\' + effectText + \')\');
}
</script>';
echo '
<form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=issuewarning" method="post" class="flow_hidden" accept-charset="', $context['character_set'], '">
<div class="cat_bar">
<h3 class="catbg profile_hd">
', $context['user']['is_owner'] ? $txt['profile_warning_level'] : $txt['profile_issue_warning'], '
</h3>
</div>';
if (!$context['user']['is_owner'])
echo '
<p class="information">', $txt['profile_warning_desc'], '</p>';
echo '
<div class="windowbg">
<dl class="settings">';
if (!$context['user']['is_owner'])
echo '
<dt>
<strong>', $txt['profile_warning_name'], ':</strong>
</dt>
<dd>
<strong>', $context['member']['name'], '</strong>
</dd>';
echo '
<dt>
<strong>', $txt['profile_warning_level'], ':</strong>';
if ($context['warning_limit'])
echo '
<br>
<span class="smalltext">', sprintf($txt['profile_warning_limit_attribute'], $context['warning_limit']), '</span>';
echo '
</dt>
<dd>
0% <input name="warning_level" id="warning_level" type="range" min="0" max="100" step="5" value="', $context['member']['warning'], '" onchange="updateSlider(this.value)"> 100%
<div class="clear_left">
', $txt['profile_warning_impact'], ': <span id="cur_level_div">', $context['member']['warning'], '% (', $context['level_effects'][$context['current_level']], ')</span>
</div>
</dd>';
if (!$context['user']['is_owner'])
{
echo '
<dt>
<strong>', $txt['profile_warning_reason'], ':</strong><br>
<span class="smalltext">', $txt['profile_warning_reason_desc'], '</span>
</dt>
<dd>
<input type="text" name="warn_reason" id="warn_reason" value="', $context['warning_data']['reason'], '" size="50">
</dd>
</dl>
<hr>
<div id="box_preview"', !empty($context['warning_data']['body_preview']) ? '' : ' style="display:none"', '>
<dl class="settings">
<dt>
<strong>', $txt['preview'], '</strong>
</dt>
<dd id="body_preview">
', !empty($context['warning_data']['body_preview']) ? $context['warning_data']['body_preview'] : '', '
</dd>
</dl>
<hr>
</div>
<dl class="settings">
<dt>
<strong><label for="warn_notify">', $txt['profile_warning_notify'], ':</label></strong>
</dt>
<dd>
<input type="checkbox" name="warn_notify" id="warn_notify" onclick="modifyWarnNotify();"', $context['warning_data']['notify'] ? ' checked' : '', '>
</dd>
<dt>
<strong><label for="warn_sub">', $txt['profile_warning_notify_subject'], ':</label></strong>
</dt>
<dd>
<input type="text" name="warn_sub" id="warn_sub" value="', empty($context['warning_data']['notify_subject']) ? $txt['profile_warning_notify_template_subject'] : $context['warning_data']['notify_subject'], '" size="50">
</dd>
<dt>
<strong><label for="warn_temp">', $txt['profile_warning_notify_body'], ':</label></strong>
</dt>
<dd>
<select name="warn_temp" id="warn_temp" disabled onchange="populateNotifyTemplate();">
<option value="-1">', $txt['profile_warning_notify_template'], '</option>
<option value="-1" disabled>------------------------------</option>';
foreach ($context['notification_templates'] as $id_template => $template)
echo '
<option value="', $id_template, '">', $template['title'], '</option>';
echo '
</select>
<span class="smalltext" id="new_template_link" style="display: none;">[<a href="', $scripturl, '?action=moderate;area=warnings;sa=templateedit;tid=0" target="_blank" rel="noopener">', $txt['profile_warning_new_template'], '</a>]</span>
<br>
<textarea name="warn_body" id="warn_body" cols="40" rows="8">', $context['warning_data']['notify_body'], '</textarea>
</dd>';
}
echo '
</dl>
<div class="righttext">';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="button" name="preview" id="preview_button" value="', $txt['preview'], '" class="button">
<input type="submit" name="save" value="', $context['user']['is_owner'] ? $txt['change_profile'] : $txt['profile_warning_issue'], '" class="button">
</div><!-- .righttext -->
</div><!-- .windowbg -->
</form>';
template_show_list('view_warnings');
echo '
<script>';
if (!$context['user']['is_owner'])
echo '
modifyWarnNotify();
$(document).ready(function() {
$("#preview_button").click(function() {
return ajax_getTemplatePreview();
});
});
function ajax_getTemplatePreview ()
{
$.ajax({
type: "POST",
url: "' . $scripturl . '?action=xmlhttp;sa=previews;xml",
data: {item: "warning_preview", title: $("#warn_sub").val(), body: $("#warn_body").val(), issuing: true},
context: document.body,
success: function(request){
$("#box_preview").css({display:""});
$("#body_preview").html($(request).find(\'body\').text());
if ($(request).find("error").text() != \'\')
{
$("#profile_error").css({display:""});
var errors_html = \'<ul class="list_errors">\';
var errors = $(request).find(\'error\').each(function() {
errors_html += \'<li>\' + $(this).text() + \'</li>\';
});
errors_html += \'</ul>\';
$("#profile_error").html(errors_html);
}
else
{
$("#profile_error").css({display:"none"});
$("#error_list").html(\'\');
}
return false;
},
});
return false;
}';
echo '
</script>';
}
function template_deleteAccount()
{
global $context, $scripturl, $txt;
echo '
<form action="', $scripturl, '?action=profile;area=deleteaccount;save" method="post" accept-charset="', $context['character_set'], '" name="creator" id="creator">
<div class="cat_bar">
<h3 class="catbg profile_hd">
', $txt['deleteAccount'], '
</h3>
</div>';
if (!$context['user']['is_owner'])
echo '
<p class="information">', $txt['deleteAccount_desc'], '</p>';
echo '
<div class="windowbg">';
if ($context['needs_approval'])
echo '
<div class="errorbox">', $txt['deleteAccount_approval'], '</div>';
if ($context['user']['is_owner'])
{
echo '
<div class="alert">', $txt['own_profile_confirm'], '</div>
<div>
<strong', (isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : ''), '>', $txt['current_password'], ': </strong>
<input type="password" name="oldpasswrd" size="20">
<input type="submit" value="', $txt['yes'], '" class="button">';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="hidden" name="u" value="', $context['id_member'], '">
<input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
</div>';
}
else
{
echo '
<div class="alert">', $txt['deleteAccount_warning'], '</div>';
if ($context['can_delete_posts'])
{
echo '
<div>
<label for="deleteVotes">
<input type="checkbox" name="deleteVotes" id="deleteVotes" value="1"> ', $txt['deleteAccount_votes'], ':
</label><br>
<label for="deletePosts">
<input type="checkbox" name="deletePosts" id="deletePosts" value="1"> ', $txt['deleteAccount_posts'], ':
</label>
<select name="remove_type">
<option value="posts">', $txt['deleteAccount_all_posts'], '</option>
<option value="topics">', $txt['deleteAccount_topics'], '</option>
</select>';
if ($context['show_perma_delete'])
echo '
<br>
<label for="perma_delete"><input type="checkbox" name="perma_delete" id="perma_delete" value="1">', $txt['deleteAccount_permanent'], '</label>';
echo '
</div>';
}
echo '
<div>
<label for="deleteAccount"><input type="checkbox" name="deleteAccount" id="deleteAccount" value="1" onclick="if (this.checked) return confirm(\'', $txt['deleteAccount_confirm'], '\');"> ', $txt['deleteAccount_member'], '.</label>
</div>
<div>
<input type="submit" value="', $txt['delete'], '" class="button">';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="hidden" name="u" value="', $context['id_member'], '">
<input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
</div>';
}
echo '
</div><!-- .windowbg -->
<br>
</form>';
}
function template_profile_save()
{
global $context, $txt;
echo '
<hr>';
if ($context['require_password'])
echo '
<dl class="settings">
<dt>
<strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '>', $txt['current_password'], ': </strong><br>
<span class="smalltext">', $txt['required_security_reasons'], '</span>
</dt>
<dd>
<input type="password" name="oldpasswrd" size="20">
</dd>
</dl>';
echo '
<div class="righttext">';
if (!empty($context['token_check']))
echo '
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">';
echo '
<input type="submit" value="', $txt['change_profile'], '" class="button">
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="hidden" name="u" value="', $context['id_member'], '">
<input type="hidden" name="sa" value="', $context['menu_item_selected'], '">
</div>';
}
function template_error_message()
{
global $context, $txt;
echo '
<div class="errorbox" ', empty($context['post_errors']) ? 'style="display:none" ' : '', 'id="profile_error">';
if (!empty($context['post_errors']))
{
echo '
<span>', !empty($context['custom_error_title']) ? $context['custom_error_title'] : $txt['profile_errors_occurred'], ':</span>
<ul id="list_errors">';
foreach ($context['post_errors'] as $error)
echo '
<li>', isset($txt['profile_error_' . $error]) ? $txt['profile_error_' . $error] : $error, '</li>';
echo '
</ul>';
}
echo '
</div><!-- #profile_error -->';
}
function template_profile_group_manage()
{
global $context, $txt, $scripturl;
echo '
<dt>
<strong>', $txt['primary_membergroup'], ': </strong><br>
<span class="smalltext"><a href="', $scripturl, '?action=helpadmin;help=moderator_why_missing" onclick="return reqOverlayDiv(this.href);"><span class="main_icons help"></span> ', $txt['moderator_why_missing'], '</a></span>
</dt>
<dd>
<select name="id_group" ', ($context['user']['is_owner'] && $context['member']['group_id'] == 1 ? 'onchange="if (this.value != 1 && !confirm(\'' . $txt['deadmin_confirm'] . '\')) this.value = 1;"' : ''), '>';
foreach ($context['member_groups'] as $member_group)
if (!empty($member_group['can_be_primary']))
echo '
<option value="', $member_group['id'], '"', $member_group['is_primary'] ? ' selected' : '', '>
', $member_group['name'], '
</option>';
echo '
</select>
</dd>
<dt>
<strong>', $txt['additional_membergroups'], ':</strong>
</dt>
<dd>
<span id="additional_groupsList">
<input type="hidden" name="additional_groups[]" value="0">';
foreach ($context['member_groups'] as $member_group)
if ($member_group['can_be_additional'])
echo '
<label for="additional_groups-', $member_group['id'], '"><input type="checkbox" name="additional_groups[]" value="', $member_group['id'], '" id="additional_groups-', $member_group['id'], '"', $member_group['is_additional'] ? ' checked' : '', '> ', $member_group['name'], '</label><br>';
echo '
</span>
<a href="javascript:void(0);" onclick="document.getElementById(\'additional_groupsList\').style.display = \'block\'; document.getElementById(\'additional_groupsLink\').style.display = \'none\'; return false;" id="additional_groupsLink" style="display: none;" class="toggle_down">', $txt['additional_membergroups_show'], '</a>
<script>
document.getElementById("additional_groupsList").style.display = "none";
document.getElementById("additional_groupsLink").style.display = "";
</script>
</dd>';
}
function template_profile_birthdate()
{
global $txt, $context;
echo '
<dt>
<strong>', $txt['dob'], ':</strong><br>
<span class="smalltext">', $txt['dob_year'], ' - ', $txt['dob_month'], ' - ', $txt['dob_day'], '</span>
</dt>
<dd>
<input type="text" name="bday3" size="4" maxlength="4" value="', $context['member']['birth_date']['year'], '"> -
<input type="text" name="bday1" size="2" maxlength="2" value="', $context['member']['birth_date']['month'], '"> -
<input type="text" name="bday2" size="2" maxlength="2" value="', $context['member']['birth_date']['day'], '">
</dd>';
}
function template_profile_signature_modify()
{
global $txt, $context;
echo '
<dt id="current_signature" style="display:none">
<strong>', $txt['current_signature'], ':</strong>
</dt>
<dd id="current_signature_display" style="display:none">
<hr>
</dd>
<dt id="preview_signature" style="display:none">
<strong>', $txt['signature_preview'], ':</strong>
</dt>
<dd id="preview_signature_display" style="display:none">
<hr>
</dd>
<dt>
<strong>', $txt['signature'], ':</strong><br>
<span class="smalltext">', $txt['sig_info'], '</span><br>
<br>';
if ($context['show_spellchecking'])
echo '
<input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'creator\', \'signature\');" class="button">';
echo '
</dt>
<dd>
<textarea class="editor" onkeyup="calcCharLeft();" id="signature" name="signature" rows="5" cols="50">', $context['member']['signature'], '</textarea><br>';
if (!empty($context['signature_limits']['max_length']))
echo '
<span class="smalltext">', sprintf($txt['max_sig_characters'], $context['signature_limits']['max_length']), ' <span id="signatureLeft">', $context['signature_limits']['max_length'], '</span></span><br>';
if (!empty($context['show_preview_button']))
echo '
<input type="button" name="preview_signature" id="preview_button" value="', $txt['preview_signature'], '" class="button floatright">';
if ($context['signature_warning'])
echo '
<span class="smalltext">', $context['signature_warning'], '</span>';
echo '
<script>
var maxLength = ', $context['signature_limits']['max_length'], ';
$(document).ready(function() {
calcCharLeft();
$("#preview_button").click(function() {
return ajax_getSignaturePreview(true);
});
});
</script>
</dd>';
}
function template_profile_avatar_select()
{
global $context, $txt, $modSettings;
echo '
<dt>
<strong id="personal_picture">
<label for="avatar_upload_box">', $txt['personal_picture'], '</label>
</strong>';
if (empty($modSettings['gravatarOverride']))
echo '
<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_none" value="none"' . ($context['member']['avatar']['choice'] == 'none' ? ' checked="checked"' : '') . '>
<label for="avatar_choice_none"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
' . $txt['no_avatar'] . '
</label><br>';
if (!empty($context['member']['avatar']['allow_server_stored']))
echo '
<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_server_stored" value="server_stored"' . ($context['member']['avatar']['choice'] == 'server_stored' ? ' checked="checked"' : '') . '>
<label for="avatar_choice_server_stored"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
', $txt['choose_avatar_gallery'], '
</label><br>';
if (!empty($context['member']['avatar']['allow_external']))
echo '
<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_external" value="external"' . ($context['member']['avatar']['choice'] == 'external' ? ' checked="checked"' : '') . '>
<label for="avatar_choice_external"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
', $txt['my_own_pic'], '
</label><br>';
if (!empty($context['member']['avatar']['allow_upload']))
echo '
<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_upload" value="upload"' . ($context['member']['avatar']['choice'] == 'upload' ? ' checked="checked"' : '') . '>
<label for="avatar_choice_upload"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>
', $txt['avatar_will_upload'], '
</label><br>';
if (!empty($context['member']['avatar']['allow_gravatar']))
echo '
<input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_gravatar" value="gravatar"' . ($context['member']['avatar']['choice'] == 'gravatar' ? ' checked="checked"' : '') . '>
<label for="avatar_choice_gravatar"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['use_gravatar'] . '</label>';
echo '
</dt>
<dd>';
if (!empty($context['member']['avatar']['allow_server_stored']))
{
echo '
<div id="avatar_server_stored">
<div>
<select name="cat" id="cat" size="10" onchange="changeSel(\'\');" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'server_stored\');">';
foreach ($context['avatars'] as $avatar)
echo '
<option value="', $avatar['filename'] . ($avatar['is_dir'] ? '/' : ''), '"', ($avatar['checked'] ? ' selected' : ''), '>', $avatar['name'], '</option>';
echo '
</select>
</div>
<div>
<select name="file" id="file" size="10" style="display: none;" onchange="showAvatar()" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'server_stored\');" disabled><option></option></select>
</div>
<div class="edit_avatar_img">
<img id="avatar" src="', $context['member']['avatar']['choice'] == 'server_stored' ? $context['member']['avatar']['href'] : $modSettings['avatar_url'] . '/blank.png', '" alt="">
</div>
<script>
var files = ["' . implode('", "', $context['avatar_list']) . '"];
var avatar = document.getElementById("avatar");
var cat = document.getElementById("cat");
var selavatar = "' . $context['avatar_selected'] . '";
var avatardir = "' . $modSettings['avatar_url'] . '/";
var size = avatar.alt.substr(3, 2) + " " + avatar.alt.substr(0, 2) + String.fromCharCode(117, 98, 116);
var file = document.getElementById("file");
var maxHeight = ', !empty($modSettings['avatar_max_height_external']) ? $modSettings['avatar_max_height_external'] : 0, ';
var maxWidth = ', !empty($modSettings['avatar_max_width_external']) ? $modSettings['avatar_max_width_external'] : 0, ';
if (avatar.src.indexOf("blank.png") > -1)
changeSel(selavatar);
else
previewExternalAvatar(avatar.src)
</script>
</div><!-- #avatar_server_stored -->';
}
if (!empty($context['member']['avatar']['allow_external']))
echo '
<div id="avatar_external">
', $context['member']['avatar']['choice'] == 'external' ? '<div class="edit_avatar_img"><img src="' . $context['member']['avatar']['href'] . '" alt=""></div>' : '', '
<div class="smalltext">', $txt['avatar_by_url'], '</div>', !empty($modSettings['avatar_action_too_large']) && $modSettings['avatar_action_too_large'] == 'option_download_and_resize' ? template_max_size('external') : '', '
<input type="text" name="userpicpersonal" size="45" value="', ((stristr($context['member']['avatar']['external'], 'http://') || stristr($context['member']['avatar']['external'], 'https://')) ? $context['member']['avatar']['external'] : 'http://'), '" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'external\');" onchange="if (typeof(previewExternalAvatar) != \'undefined\') previewExternalAvatar(this.value);">
</div>';
if (!empty($context['member']['avatar']['allow_upload']))
echo '
<div id="avatar_upload">
', $context['member']['avatar']['choice'] == 'upload' ? '<div class="edit_avatar_img"><img src="' . $context['member']['avatar']['href'] . '" alt=""></div>' : '', '
<input type="file" size="44" name="attachment" id="avatar_upload_box" value="" onchange="readfromUpload(this)" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'upload\');" accept="image/gif, image/jpeg, image/jpg, image/png">', template_max_size('upload'), '
', (!empty($context['member']['avatar']['id_attach']) ? '<br><img src="' . $context['member']['avatar']['href'] . (strpos($context['member']['avatar']['href'], '?') === false ? '?' : '&') . 'time=' . time() . '" alt="" id="attached_image"><input type="hidden" name="id_attach" value="' . $context['member']['avatar']['id_attach'] . '">' : ''), '
</div>';
if (!empty($context['member']['avatar']['allow_gravatar']))
{
echo '
<div id="avatar_gravatar">
', $context['member']['avatar']['choice'] == 'gravatar' ? '<div class="edit_avatar_img"><img src="' . $context['member']['avatar']['href'] . '" alt=""></div>' : '';
if (empty($modSettings['gravatarAllowExtraEmail']))
echo '
<div class="smalltext">', $txt['gravatar_noAlternateEmail'], '</div>';
else
{
if ($context['member']['avatar']['external'] == $context['member']['email'])
$textbox_value = '';
else
$textbox_value = $context['member']['avatar']['external'];
echo '
<div class="smalltext">', $txt['gravatar_alternateEmail'], '</div>
<input type="text" name="gravatarEmail" id="gravatarEmail" size="45" value="', $textbox_value, '">';
}
echo '
</div><!-- #avatar_gravatar -->';
}
echo '
<script>
', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "' . ($context['member']['avatar']['choice'] == 'server_stored' ? '' : 'none') . '";' : '', '
', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "' . ($context['member']['avatar']['choice'] == 'external' ? '' : 'none') . '";' : '', '
', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "' . ($context['member']['avatar']['choice'] == 'upload' ? '' : 'none') . '";' : '', '
', !empty($context['member']['avatar']['allow_gravatar']) ? 'document.getElementById("avatar_gravatar").style.display = "' . ($context['member']['avatar']['choice'] == 'gravatar' ? '' : 'none') . '";' : '', '
function swap_avatar(type)
{
switch(type.id)
{
case "avatar_choice_server_stored":
', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "";' : '', '
', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_gravatar']) ? 'document.getElementById("avatar_gravatar").style.display = "none";' : '', '
break;
case "avatar_choice_external":
', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "";' : '', '
', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_gravatar']) ? 'document.getElementById("avatar_gravatar").style.display = "none";' : '', '
break;
case "avatar_choice_upload":
', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "";' : '', '
', !empty($context['member']['avatar']['allow_gravatar']) ? 'document.getElementById("avatar_gravatar").style.display = "none";' : '', '
break;
case "avatar_choice_none":
', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_gravatar']) ? 'document.getElementById("avatar_gravatar").style.display = "none";' : '', '
break;
case "avatar_choice_gravatar":
', !empty($context['member']['avatar']['allow_server_stored']) ? 'document.getElementById("avatar_server_stored").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_external']) ? 'document.getElementById("avatar_external").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_upload']) ? 'document.getElementById("avatar_upload").style.display = "none";' : '', '
', !empty($context['member']['avatar']['allow_gravatar']) ? 'document.getElementById("avatar_gravatar").style.display = "";' : '', '
', ($context['member']['avatar']['external'] == $context['member']['email'] || strstr($context['member']['avatar']['external'], 'http://')) ?
'document.getElementById("gravatarEmail").value = "";' : '', '
break;
}
}
</script>
</dd>';
}
function template_max_size($type)
{
global $modSettings, $txt;
$w = !empty($modSettings['avatar_max_width_' . $type]) ? comma_format($modSettings['avatar_max_width_' . $type]) : 0;
$h = !empty($modSettings['avatar_max_height_' . $type]) ? comma_format($modSettings['avatar_max_height_' . $type]) : 0;
$suffix = (!empty($w) ? 'w' : '') . (!empty($h) ? 'h' : '');
if (empty($suffix))
return;
echo '
<div class="smalltext">', sprintf($txt['avatar_max_size_' . $suffix], $w, $h), '</div>';
}
function template_profile_timeformat_modify()
{
global $context, $txt, $scripturl;
echo '
<dt>
<strong><label for="easyformat">', $txt['time_format'], ':</label></strong><br>
<a href="', $scripturl, '?action=helpadmin;help=time_format" onclick="return reqOverlayDiv(this.href);" class="help"><span class="main_icons help" title="', $txt['help'], '"></span></a>
<span class="smalltext">
<label for="time_format">', $txt['date_format'], '</label>
</span>
</dt>
<dd>
<select name="easyformat" id="easyformat" onchange="document.forms.creator.time_format.value = this.options[this.selectedIndex].value;">';
foreach ($context['easy_timeformats'] as $time_format)
echo '
<option value="', $time_format['format'], '"', $time_format['format'] == $context['member']['time_format'] ? ' selected' : '', '>', $time_format['title'], '</option>';
echo '
</select>
<input type="text" name="time_format" id="time_format" value="', $context['member']['time_format'], '" size="30">
</dd>';
}
function template_profile_theme_pick()
{
global $txt, $context, $scripturl;
echo '
<dt>
<strong>', $txt['current_theme'], ':</strong>
</dt>
<dd>
', $context['member']['theme']['name'], ' <a class="button" href="', $scripturl, '?action=theme;sa=pick;u=', $context['id_member'], '">', $txt['change'], '</a>
</dd>';
}
function template_profile_smiley_pick()
{
global $txt, $context, $modSettings, $settings;
echo '
<dt>
<strong><label for="smiley_set">', $txt['smileys_current'], ':</label></strong>
</dt>
<dd>
<select name="smiley_set" id="smiley_set">';
foreach ($context['smiley_sets'] as $set)
echo '
<option data-preview="', $set['preview'], '" value="', $set['id'], '"', $set['selected'] ? ' selected' : '', '>', $set['name'], '</option>';
echo '
</select>
<img id="smileypr" class="centericon" src="', $context['member']['smiley_set']['preview'], '" alt=":)">
</dd>';
}
function template_tfasetup()
{
global $txt, $context, $scripturl, $modSettings;
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['tfa_title'], '</h3>
</div>
<div class="roundframe">
<div>';
if (!empty($context['tfa_backup']))
echo '
<div class="smalltext error">
', $txt['tfa_backup_used_desc'], '
</div>';
elseif ($modSettings['tfa_mode'] == 2)
echo '
<div class="smalltext">
<strong>', $txt['tfa_forced_desc'], '</strong>
</div>';
echo '
<div class="smalltext">
', $txt['tfa_desc'], '
</div>
<div class="floatleft">
<form action="', $scripturl, '?action=profile;area=tfasetup" method="post">
<div class="block">
<strong>', $txt['tfa_step1'], '</strong><br>';
if (!empty($context['tfa_pass_error']))
echo '
<div class="error smalltext">
', $txt['tfa_pass_invalid'], '
</div>';
echo '
<input type="password" name="oldpasswrd" size="25"', !empty($context['password_auth_failed']) ? ' class="error"' : '', !empty($context['tfa_pass_value']) ? ' value="' . $context['tfa_pass_value'] . '"' : '', '>
</div>
<div class="block">
<strong>', $txt['tfa_step2'], '</strong>
<div class="smalltext">', $txt['tfa_step2_desc'], '</div>
<div class="tfacode">', $context['tfa_secret'], '</div>
</div>
<div class="block">
<strong>', $txt['tfa_step3'], '</strong><br>';
if (!empty($context['tfa_error']))
echo '
<div class="error smalltext">
', $txt['tfa_code_invalid'], '
</div>';
echo '
<input type="text" name="tfa_code" size="25"', !empty($context['tfa_error']) ? ' class="error"' : '', !empty($context['tfa_value']) ? ' value="' . $context['tfa_value'] . '"' : '', '>
<input type="submit" name="save" value="', $txt['tfa_enable'], '" class="button">
</div>
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
</form>
</div>
<div class="floatright tfa_qrcode">
<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "', $context['tfa_qr_url'], '");
</script>
</div>';
if (!empty($context['from_ajax']))
echo '
<br>
<a href="javascript:self.close();"></a>';
echo '
</div>
</div><!-- .roundframe -->';
}
function template_tfadisable()
{
global $txt, $context, $scripturl;
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['tfadisable'], '</h3>
</div>
<div class="roundframe">
<form action="', $scripturl, '?action=profile;area=tfadisable" method="post">';
if ($context['user']['is_owner'])
echo '
<div class="block">
<strong', (isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : ''), '>', $txt['current_password'], ': </strong><br>
<input type="password" name="oldpasswrd" size="20">
</div>';
else
echo '
<div class="smalltext">
', sprintf($txt['tfa_disable_for_user'], $context['user']['name']), '
</div>';
echo '
<input type="submit" name="save" value="', $txt['tfa_disable'], '" class="button floatright">
<input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">
<input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
<input type="hidden" name="u" value="', $context['id_member'], '">
</form>
</div><!-- .roundframe -->';
}
function template_tfasetup_backup()
{
global $context, $txt;
echo '
<div class="cat_bar">
<h3 class="catbg">', $txt['tfa_backup_title'], '</h3>
</div>
<div class="roundframe">
<div>
<div class="smalltext">', $txt['tfa_backup_desc'], '</div>
<div class="bbc_code" style="resize: none; border: none;">', $context['tfa_backup'], '</div>
</div>
</div>';
}
function template_profile_tfa()
{
global $context, $txt, $scripturl, $modSettings;
echo '
<dt>
<strong>', $txt['tfa_profile_label'], ':</strong><br>
<div class="smalltext">', $txt['tfa_profile_desc'], '</div>
</dt>
<dd>';
if (!$context['tfa_enabled'] && $context['user']['is_owner'])
echo '
<a href="', !empty($modSettings['force_ssl']) ? strtr($scripturl, array('http://' => 'https://')) : $scripturl, '?action=profile;area=tfasetup" id="enable_tfa">', $txt['tfa_profile_enable'], '</a>';
elseif (!$context['tfa_enabled'])
echo '
', $txt['tfa_profile_disabled'];
else
echo '
', sprintf($txt['tfa_profile_enabled'], (!empty($modSettings['force_ssl']) ? strtr($scripturl, array('http://' => 'https://')) : $scripturl) . '?action=profile;u=' . $context['id_member'] . ';area=tfadisable');
echo '
</dd>';
}
?>