mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-02-23 09:50:26 +00:00
Coding standard fixes. Routes: Error page override works now. Welcome controller: Return false where needed. Header-view: lnk-helper function to help highlight current page matching links. ecards-helper: lnk() and checkboxes(), needs commenting. new-view: values for javascript, Image name for dropdown. style.css: better colours, footer links not so prominent, helper classes, moved cursor: move from users without javascript. scripts.js: documentation.
This commit is contained in:
@@ -31,14 +31,16 @@ define('DIR_WRITE_MODE', 0777);
|
||||
|
|
||||
*/
|
||||
|
||||
define('FOPEN_READ', 'rb');
|
||||
define('FOPEN_READ_WRITE', 'r+b');
|
||||
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
|
||||
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
|
||||
define('FOPEN_WRITE_CREATE', 'ab');
|
||||
define('FOPEN_READ_WRITE_CREATE', 'a+b');
|
||||
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
|
||||
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
|
||||
define('FOPEN_READ', 'rb');
|
||||
define('FOPEN_READ_WRITE', 'r+b');
|
||||
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
|
||||
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
|
||||
define('FOPEN_WRITE_CREATE', 'ab');
|
||||
define('FOPEN_READ_WRITE_CREATE', 'a+b');
|
||||
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
|
||||
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
|
||||
|
||||
|
||||
|
||||
|
||||
/* End of file constants.php */
|
||||
|
||||
@@ -46,7 +46,7 @@ if (empty($route)) {
|
||||
}
|
||||
|
||||
$route['default_controller'] = "welcome";
|
||||
$route['404_override'] = 'error404';
|
||||
$route['404_override'] = 'welcome/error404';
|
||||
|
||||
$route['uusi'] = $route['default_controller']."/newCard";
|
||||
$route['kaikki'] = $route['default_controller']."/ecards";
|
||||
|
||||
@@ -95,6 +95,8 @@ class Welcome extends CI_Controller
|
||||
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function upload()
|
||||
|
||||
77
application/helpers/ecards_helper.php
Normal file
77
application/helpers/ecards_helper.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* lnk helps return anchor tag with class when current_url() is site_url($match)
|
||||
*
|
||||
* @param string $url Your link inside the application, not for outside links
|
||||
* @param string $text Link text
|
||||
* @param string $match What url to match against, use like $url
|
||||
* @param string $class What class should be added if urls match
|
||||
*
|
||||
* @author Ismo Vuorinen <ismo.vuorinen@tampere.fi>
|
||||
*
|
||||
* @return string Formatted anchor tag with everything needed
|
||||
*/
|
||||
function lnk($url = null, $text = null, $match = null, $class = ' active')
|
||||
{
|
||||
// $url should be "controller/action", no need to give full url
|
||||
$url = site_url($url);
|
||||
|
||||
// Test matching, are we on the page we want to match against?
|
||||
if (empty($match)) {
|
||||
$match = current_url();
|
||||
} else {
|
||||
$match = site_url($match);
|
||||
}
|
||||
|
||||
// Return correctly formatted link
|
||||
if ($url == $match) {
|
||||
return '<a class="' . $class . '" href="' . $url . '">' . $text . '</a>';
|
||||
} else {
|
||||
return '<a href="'. $url .'">' . $text . '</a>';
|
||||
}
|
||||
}
|
||||
|
||||
function checkboxed(
|
||||
$name,
|
||||
$data,
|
||||
$value,
|
||||
$label,
|
||||
$data_id = null,
|
||||
$disabled = false,
|
||||
$disabletext = null
|
||||
) {
|
||||
$fieldname = null;
|
||||
$labelname = null;
|
||||
$string = null;
|
||||
|
||||
$fieldname = 'data['.$data_id.']['.$name.']';
|
||||
$labelname = $fieldname .'['. $data .']';
|
||||
|
||||
$string = '<input type="radio" '
|
||||
. 'name="' . $fieldname .'" '
|
||||
. 'id="' . $labelname . '" '
|
||||
. 'value="'. $value.'"';
|
||||
|
||||
if ($data == $value) {
|
||||
$string .= ' checked';
|
||||
}
|
||||
|
||||
if (empty($disabletext)) {
|
||||
$disabletext = 'Ei voida julkaista lähettäjän päätöksestä';
|
||||
}
|
||||
|
||||
if ($disabled) {
|
||||
$string .= ' disabled';
|
||||
$label = '<span data-tooltip class="has-tip tip-top" '
|
||||
. 'data-width="180" title="' . $disabletext . '">' . $label . '</span>';
|
||||
}
|
||||
|
||||
$string .= '>';
|
||||
|
||||
if (!empty($label)) {
|
||||
$string = '<label>' . $string . $label . '</label>';
|
||||
}
|
||||
|
||||
return $string;
|
||||
}
|
||||
@@ -7,14 +7,14 @@ if (empty($page_title)) {
|
||||
}
|
||||
|
||||
?><!DOCTYPE html>
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9" lang="fi"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js" lang="fi"> <!--<![endif]-->
|
||||
<!--[if IE 8]><html class="no-js lt-ie9" lang="fi"><![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js" lang="fi"><!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="icon" href="<?php echo site_url('/favicon.ico'); ?>">
|
||||
<title><?php echo implode(" » ", $page_title); ?></title>
|
||||
<?php
|
||||
<?php
|
||||
// Assets spark
|
||||
assets_css(
|
||||
array(
|
||||
@@ -44,29 +44,30 @@ if (empty($page_title)) {
|
||||
<section class="top-bar-section">
|
||||
<ul class="left">
|
||||
<li class="divider"></li>
|
||||
<li><a class="active" href="<?php echo site_url("uusi"); ?>">Luo omasi!</a></li>
|
||||
<li><?= lnk("uusi", "Luo omasi!"); ?></li>
|
||||
<li class="divider"></li>
|
||||
<li><a href="<?php echo site_url("kaikki"); ?>">Listaa kaikki</a></li>
|
||||
<li><?= lnk("kaikki", "Listaa kaikki"); ?></li>
|
||||
<li class="divider"></li>
|
||||
<li class="has-dropdown">
|
||||
<a href="<?php echo site_url("info"); ?>">Tietoa</a>
|
||||
<?= lnk("info", "Tietoa"); ?>
|
||||
<ul class="dropdown">
|
||||
<li><a href="<?php echo site_url("info"); ?>#rekisteri">Rekisteriseloste</a></li>
|
||||
<li><a href="<?php echo site_url("info"); ?>#yhteystiedot">Yhteystiedot</a></li>
|
||||
<li><?= lnk("info#rekisteri", "Rekisteriseloste"); ?></li>
|
||||
<li><?= lnk("info#yhteystiedot", "Yhteystiedot"); ?></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<?php
|
||||
if (isset($user) and ! empty($user)) {
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<ul class="left">
|
||||
<li class="has-dropdown adminmenu">
|
||||
<a href="<?php echo site_url("yllapito"); ?>">Ylläpito</a>
|
||||
<a href="<?php echo site_url("yllapito"); ?>">
|
||||
<ul class="dropdown">
|
||||
<li class="has-dropdown">
|
||||
<a href="<?php echo site_url("yllapito/kortit"); ?>">Hallitse kortteja</a>
|
||||
<?= lnk("yllapito/ecards", "Hallitse kortteja"); ?>
|
||||
<ul class="dropdown">
|
||||
<li>
|
||||
<a href="<?php echo site_url("yllapito/ecards/moderate");?>">
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
</div>
|
||||
<div class="small-12 large-9 columns">
|
||||
<input required type="text" id="sender_name"
|
||||
name="sender_name" placeholder="Lähettäjän nimi">
|
||||
name="sender_name" value="" placeholder="Lähettäjän nimi">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
@@ -38,7 +38,7 @@
|
||||
</div>
|
||||
<div class="small-12 large-9 columns">
|
||||
<input required type="email" id="sender_email"
|
||||
name="sender_email" placeholder="Lähettäjän email">
|
||||
name="sender_email" value="" placeholder="Lähettäjän email">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -53,7 +53,7 @@
|
||||
</div>
|
||||
<div class="small-12 large-9 columns">
|
||||
<input required type="text" id="receiver_name"
|
||||
name="receiver_name" placeholder="Vastaanottajan nimi">
|
||||
name="receiver_name" value="" placeholder="Vastaanottajan nimi">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
@@ -62,7 +62,7 @@
|
||||
</div>
|
||||
<div class="small-12 large-9 columns">
|
||||
<input required type="email" id="receiver_email"
|
||||
name="receiver_email" placeholder="Vastaanottajan email">
|
||||
name="receiver_email" value="" placeholder="Vastaanottajan email">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -79,12 +79,12 @@
|
||||
<?php
|
||||
if (! empty($images)) {
|
||||
foreach ($images as $i => $image) {
|
||||
$name = pathinfo($image, PATHINFO_FILENAME);
|
||||
|
||||
?> <option data-img-src='<?php echo
|
||||
$image;
|
||||
?> <option data-img-src='<?php echo $image;
|
||||
?>' value='<?php
|
||||
echo $i;
|
||||
?>'>Cute Kitten <?=$i;?></option><?php
|
||||
echo $image;
|
||||
?>'>Kuva: <?=$name;?></option><?php
|
||||
echo "\n";
|
||||
}
|
||||
}
|
||||
@@ -102,7 +102,7 @@ if (! empty($images)) {
|
||||
</div>
|
||||
<div class="small-12 large-9 columns">
|
||||
<input type="text" maxlength="200" id="message_title"
|
||||
name="message_title" placeholder="Moikka!">
|
||||
name="message_title" value="" placeholder="Moikka!">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
@@ -166,9 +166,6 @@ if (! empty($images)) {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user