Browse code

Restore original eFiction 3.0 skins

Clarissa Walker authored on 2026/07/15 07:41:54
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,89 @@
1
+<?php
2
+/*
3
+		Skin Name: Zenlike
4
+		Skin Download: http://sally.lunaescence.com/tag/zenlike
5
+		Description: A light green and white skin with very few graphics
6
+		Author: Sally Anderson
7
+		Author E-Mail: sally@lunaescence.com
8
+		Author URI: http://sally.lunaescence.com/
9
+*/
10
+
11
+
12
+
13
+
14
+/* CATEGORY BLOCK
15
+		Categories are to show only on the index.
16
+		I currently have it set to display:
17
+		The image, then the link, the story count in brackets, and then the description in a div tag. (template)
18
+		Three columns (columns)*/
19
+$blocks["categories"]["status"] = '2';
20
+$blocks["categories"]["template"] = "{image} {link} [{count}] <div>{description}</div>";
21
+$blocks["categories"]["columns"] = '3';
22
+
23
+
24
+/* FEATURED BLOCK
25
+		By default, the featured stories is off.*/
26
+$blocks["featured"]["status"] =  '0';
27
+
28
+
29
+/* INFO BLOCK
30
+		Info is set to display only on the home page.  I don't bother to style it.*/
31
+$blocks["info"]["status"] = '2';
32
+
33
+
34
+/* MENU BLOCK
35
+		The menu is set to display on all pages.
36
+		Additional styles include:
37
+		As an inline list. (style=2)
38
+		Links to home, recent, authors, categories,titles,series,search,top tens, browse by, help, contact us, and the login info. */
39
+$blocks["menu"]["status"] = '1';
40
+$blocks["menu"]["content"] = array (
41
+  0 => 'home',
42
+  1 => 'recent',
43
+  2 => 'authors',
44
+  3 => 'catslink',
45
+  4 => 'titles',
46
+  5 => 'series',
47
+  6 => 'search',
48
+  7 => 'tens',
49
+  8 => 'browse',
50
+  9 => 'help',
51
+  10 => 'contactus',
52
+  11 => 'login',
53
+  12 => 'logout',
54
+  13 => 'adminarea');
55
+$blocks["menu"]["style"] = 0;
56
+
57
+
58
+/* LOG-IN BLOCK
59
+		The login form is set to display on all pages, even though I only actually call it on the index.  It can safely be changed to just the index, but I did this to address a possible bug.
60
+		I currently have it set to display:
61
+		In long format (form) */
62
+$blocks["login"]["status"] = '1';
63
+$blocks["login"]["form"] = '1';
64
+
65
+
66
+/* RANDOM STORIES BLOCK
67
+		Status is set to display on just the index page.*/
68
+$blocks["random"]["status"] = '2';
69
+
70
+
71
+/* RECENT STORIES BLOCK
72
+		By default, the recent stories block is off.*/
73
+$blocks["recent"]["status"] = '0';
74
+
75
+
76
+/* SKIN CHANGER
77
+		Status is set to display on all pages. */
78
+$blocks["skinchange"]["status"] = '1';
79
+
80
+
81
+/* NEWS BLOCK
82
+		Status is set to display on just the index page. */
83
+$blocks["news"]["status"] = '2';
84
+
85
+
86
+/* NEW STORY INDICATOR
87
+		Styled: Plain text surrounded with the superscript HTML tag with font-size set to extra small and italic.*/
88
+$new = "<sup style='font-size:xx-small;font-style:italic'>New!</sup>";
89
+?>
0 90
\ No newline at end of file