Commit fc88ca57 authored by JULIO JARAMILLO's avatar JULIO JARAMILLO

nueva apariencia

parent 905acda7
/**
* Multiple Selects - jQuery plugin for converting a multiple <select> into two, adding the ability to move items between the boxes.
* http://code.google.com/p/jqmultiselects/
*
* Copyright (c) 2007 Rob Desbois
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* Version: 0.2
*
* Changelog
* 0.1
* initial release
*
* 0.2
* <option> elements can be automatically selected upon parent form submission
* plugin options now passed as an array
* all element identifiers now taken as jQuery selectors instead
* added beforeMove and afterMove callback functions
*/
/** Adds multiple select behaviour to a <select> element.
* This allows options to be transferred to a different select using mouse double-clicks, or multiple options at a time via another element.
*
* Syntax:
* $(source).multiSelect(dest, options);
*
* Options:
* * trigger: Selector for elements which will trigger the move on a click event. Default is none.
* * autoSubmit: Whether to automatically select <option>s for submission with parent form submit. Default true.
* * beforeMove: Before move callback function. Return true to continue/false to cancel the move operation.
* * afterMove: After move callback function.
*
* @example $("#my_select_left").multiSelect("#my_select_right");
* @desc Sets up double-clicks on #my_select_left's options to move the option to #my_select_right
* @example $("#my_select_left").multiSelect("#my_select_right", {trigger: "#my_move_right_button"});
* @desc Sets up double-clicks as above and also sets up #my_move_right_button to transfer multiple elements on click.
*
* @example
* <form action="test-handler.php" method="get">
* <table>
* <tr>
* <td><select name="left[]" id="select_left" multiple="multiple" size="6">
* <option>Item 1</option>
* <option>Item 2</option>
* <option>Item 3</option>
* <option>Item 4</option>
* </select></td>
*
* <td>
* <p><a id="options_right" href="#">
* <img src="arrow_right.gif" alt="&gt;" />
* </a></p>
* <p><a id="options_left" href="#">
* <img src="arrow_left.gif" alt="&lt;" />
* </a></p>
* </td>
* <td><select name="right[]" id="select_right" multiple="multiple" size="6">
* <option>Item 5</option>
* <option>Item 6</option>
* <option>Item 7</option>
* <option>Item 8</option>
* </select></td>
* </tr>
* </table>
*
* <input type="submit" />
* </form>
*
*
* <script type="text/javascript"><!--
* $(function() {
* $("#select_left").multiSelect("#select_right", {trigger: "#options_right"});
* $("#select_right").multiSelect("#select_left", {trigger: "#options_left"});
* });
* // --></script>
*/
jQuery.fn.multiSelect = function(to, options) {
// support v0.1 syntax
if (typeof options == "string")
options = {trigger: "#"+options};
options = $.extend({
trigger: null, // selector of elements whose 'click' event should invoke a move
allTrigger:null, // select all of options
autoSubmit: true, // true => select all child <option>s on parent form submit (if any)
beforeMove: null, // before move callback function
afterMove: null // after move callback
}, options);
// for closures
var $select = this;
// make form submission select child <option>s
if (options.autoSubmit)
this.parents("form").submit(function() { selectChildOptions($select); });
// create the closure
var moveFunction = function() { moveOptions($select, to, options.beforeMove, options.afterMove); };
var moveAllFunction = function(){
jQuery("option", $select).each(function(){
jQuery(this).attr('selected',true);
});
moveFunction();
};
// attach double-click behaviour
this.dblclick(moveFunction);
// trigger element behaviour
if (options.trigger)
jQuery(options.trigger).click(moveFunction);
if (options.allTrigger)
jQuery(options.allTrigger).click(moveAllFunction);
return this;
// moves the options
function moveOptions(from, toSel, beforeMove, afterMove) {
if (beforeMove && !beforeMove())
return;
jQuery("option:selected", from).each(function() {
jQuery(this)
.attr("selected", false)
.appendTo(toSel);
});
afterMove && afterMove();
}
// selects all child options
function selectChildOptions($select) {
$select.children("option").each(function() {
this.selected = true;
});
}
};
\ No newline at end of file
allow from all
\ No newline at end of file
.code {
font-style: italic;
font-family: monospace;
color: #666;
}
.is-superadmin-note{
padding: 3px;
color: black;
background-color: rgb(255,255,100);
text-align: center;
border-radius: 5px;
position: absolute;
left: 45%;
top: 0px;
box-shadow: 3px 3px 5px #eee;
}
.crugepanel {
background-color: white;
padding: 10px;
border-radius: 5px;
border: 1px dotted #aaa;
box-shadow: 3px 3px 5px #eee;
display: block;
margin-top: 10px;
}
.auth-item-error-msg{
background-color: rgb(255,200,200);
color: red;
font-weight: bold;
padding: 5px;
border: 2px solid white;
text-align: center;
width: 50%;
}
img.iconhelp{
margin: 3px;
background-color: white;
border: 2px solid white;
box-shadow: 3px 3px 5px #eee;
border-radius: 5px;
width: 24px;
}
.auth-item-create-button {
border: 1px dotted #aaa;
box-shadow: 3px 3px 5px #eee;
border-radius: 5px;
padding: 5px;
background-color: rgb(255,255,240);
text-align: center;
width: 120px;
margin: 10px;
margin-left: 0px;
}
div.form .form-group {
border: 1px dotted #aaa;
border-radius: 5px;
overflow: auto;
padding: 10px;
margin-bottom: 10px;
box-shadow: 3px 3px 5px #eee;
}
div.form .form-group .col {
float: left;
margin-right: 10px;
}
div.form h6 {
margin-bottom: 10px;
background-color: #efefef;
padding: 5px;
padding-left: 10px;
border-radius: 3px;
}
div.form .textfield-readonly input{
border: none;
background-color: #eee;
color: #333;
}
div.form .item {
overflow: auto;
}
div.form .item input{
float: left;
}
div.form .item .hint {
float: left;
margin-left: 10px;
}
div.form .hint {
}
div.form .field-group{
border: 1px dotted #eee;
border-radius: 5px;
overflow: auto;
clear: both;
padding: 5px;
margin-bottom: 10px;
}
div.form .form-group-vert {
border: 1px dotted #aaa;
border-radius: 5px;
overflow: auto;
padding: 10px;
margin-bottom: 10px;
box-shadow: 3px 3px 5px #eee;
}
div.form .form-group-vert .col {
float: none;
margin-right: 10px;
}
#list-auth-items{
border: 1px solid red;
padding: 10px;
border: 1px solid #efefef;
border-radius: 5px;
box-shadow: 3px 3px 5px #eee;
}
#list-auth-items .row{
background-color: #efefef;
padding: 5px;
border-radius: 5px;
margin-bottom: 10px;
display: block;
width: 70%;
overflow: auto;
}
#list-auth-items .col{
text-align: left;
margin-bottom: 3px;
min-width: 100px;
}
#list-auth-items hr {
margin:0px;
}
#list-auth-items .authname{
font-weight: bold;
background-color: #ddd;
border-radius: 5px;
padding: 3px;
}
#list-auth-items .operacion{
float: left;
}
#list-auth-items .operacion-eliminar{
float: right;
text-align: right;
width: auto;
min-width: 0;
}
#list-auth-items .descr{
font-style: italic;
color: #666;
display: block;
clear: both;
margin-top: 5px;
}
#list-auth-items .referencias{
}
#list-auth-items ul.detallar-referencias {
list-style: none;
overflow: auto;
display: none;
}
#list-auth-items ul.detallar-referencias li{
float: left;
margin-right: 10px;
}
/*
auth-item muestra los CAuthItems,
*/
ul.auth-item {
overflow: auto;
list-style: none;
text-align: left;
}
ul.auth-item input {
margin-right: 10px;
float: left;
}
ul.auth-item li {
float: left;
margin-left: 10px;
margin-bottom: 10px;
border: 1px dotted #aaa;
padding: 5px;
min-width: 150px;
border-radius: 5px;
box-shadow: 3px 3px 5px #eee;
}
ul.auth-item li .loader{
float: right;
}
ul.auth-item li.checked{
background-color: rgb(200,255,240);
}
ul.auth-item li.selected{
background-color: rgb(200,240,255);
}
ul.auth-item li.loop{
background-color: #ddd;
}
#auth-item-tree ul ul li{
}
#auth-item-tree ul ul ul li{
}
#auth-item-tree ul ul .itemtext {
}
#auth-item-tree ul ul ul .itemchildtext{
}
#auth-item-tree ul ul .checked {
color: blue;
}
#auth-item-tree ul ul ul .checked{
color: blue;
}
#auth-item-tree .loop{
color: red;
font-style: italic;
}
div.user-assignments-role-list {
}
div.user-assignments-detail {
overflow: auto;
}
div.user-assignments-detail .lista{
border: 1px solid blue;
float: left;
margin-right: 10px;
width: 40%;
padding: 10px;
border: 1px solid #eee;
border-radius: 5px;
}
div.user-assignments-detail .boton {
background-image: url("hand.png");
background-repeat: no-repeat;
height: 32px;
padding: 5px;
padding-left: 34px;
font-weight: bold;
text-transform: capitalize;
text-decoration: underline;
color: rgb(0,100,255);
}
div.user-assignments-detail .boton:hover{
background-color: rgb(200,255,200);
}
div.user-assignments-detail #lista1 .boton {
background-image: url("hand-off.png");
}
div.user-assignments-detail #lista2 .boton {
background-image: url("hand.png");
}
/**
* CSS styles for CLinkPager.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.yiiframework.com/
* @copyright 2008-2010 Yii Software LLC
* @license http://www.yiiframework.com/license/
* @since 1.0
*/
ul.yiiPager
{
font-size:11px;
border:0;
margin:0;
padding:0;
line-height:100%;
display:inline;
}
ul.yiiPager li
{
display:inline;
}
ul.yiiPager a:link,
ul.yiiPager a:visited
{
border:solid 1px #9aafe5;
font-weight:bold;
color:#0e509e;
padding:1px 6px;
text-decoration:none;
}
ul.yiiPager .page a
{
font-weight:normal;
}
ul.yiiPager a:hover
{
border:solid 1px #0e509e;
}
ul.yiiPager .selected a
{
background:#2e6ab1;
color:#FFFFFF;
font-weight:bold;
}
ul.yiiPager .hidden a
{
border:solid 1px #DEDEDE;
color:#888888;
}
/**
* Hide first and last buttons by default.
*/
ul.yiiPager .first,
ul.yiiPager .last
{
display:none;
}
\ No newline at end of file
table.detail-view .null
{
color: pink;
}
table.detail-view
{
background: white;
border-collapse: collapse;
width: 100%;
margin: 0;
}
table.detail-view th, table.detail-view td
{
font-size: 0.9em;
border: 1px white solid;
padding: 0.3em 0.6em;
vertical-align: top;
}
table.detail-view th
{
text-align: right;
width: 160px;
}
table.detail-view tr.odd
{
background:#E5F1F4;
}
table.detail-view tr.even
{
background:#F8F8F8;
}
table.detail-view tr.odd th
{
}
table.detail-view tr.even th
{
}
/**
* jQuery Yii GridView plugin file.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.yiiframework.com/
* @copyright 2008-2010 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
(function ($) {
var selectCheckedRows, methods,
yiiXHR={},
gridSettings = [];
/**
* 1. Selects rows that have checkbox checked (only checkbox that is connected with selecting a row)
* 2. Check if "check all" need to be checked/unchecked
* @return object the jQuery object
*/
selectCheckedRows = function (gridId) {
var settings = gridSettings[gridId],
table = $('#' + gridId).find('.' + settings.tableClass);
table.children('tbody').find('input.select-on-check').filter(':checked').each(function () {
$(this).closest('tr').addClass('selected');
});
table.children('thead').find('th input').filter('[type="checkbox"]').each(function () {
var name = this.name.substring(0, this.name.length - 4) + '[]', //.. remove '_all' and add '[]''
$checks = $("input[name='" + name + "']", table);
this.checked = $checks.length > 0 && $checks.length === $checks.filter(':checked').length;
});
return this;
};
methods = {
/**
* yiiGridView set function.
* @param options map settings for the grid view. Available options are as follows:
* - ajaxUpdate: array, IDs of the containers whose content may be updated by ajax response
* - ajaxVar: string, the name of the request variable indicating the ID of the element triggering the AJAX request
* - ajaxType: string, the type (GET or POST) of the AJAX request
* - pagerClass: string, the CSS class for the pager container
* - tableClass: string, the CSS class for the table
* - selectableRows: integer, the number of rows that can be selected
* - updateSelector: string, the selector for choosing which elements can trigger ajax requests
* - beforeAjaxUpdate: function, the function to be called before ajax request is sent
* - afterAjaxUpdate: function, the function to be called after ajax response is received
* - ajaxUpdateError: function, the function to be called if an ajax error occurs
* - selectionChanged: function, the function to be called after the row selection is changed
* @return object the jQuery object
*/
init: function (options) {
var settings = $.extend({
ajaxUpdate: [],
ajaxVar: 'ajax',
ajaxType: 'GET',
csrfTokenName: null,
csrfToken: null,
pagerClass: 'pager',
loadingClass: 'loading',
filterClass: 'filters',
tableClass: 'items',
selectableRows: 1
// updateSelector: '#id .pager a, '#id .grid thead th a',
// beforeAjaxUpdate: function (id) {},
// afterAjaxUpdate: function (id, data) {},
// selectionChanged: function (id) {},
// url: 'ajax request URL'
}, options || {});
settings.tableClass = settings.tableClass.replace(/\s+/g, '.');
return this.each(function () {
var eventType,
eventTarget,
$grid = $(this),
id = $grid.attr('id'),
pagerSelector = '#' + id + ' .' + settings.pagerClass.replace(/\s+/g, '.') + ' a',
sortSelector = '#' + id + ' .' + settings.tableClass + ' thead th a.sort-link',
inputSelector = '#' + id + ' .' + settings.filterClass + ' input, ' + '#' + id + ' .' + settings.filterClass + ' select';
settings.updateSelector = settings.updateSelector
.replace('{page}', pagerSelector)
.replace('{sort}', sortSelector);
settings.filterSelector = settings.filterSelector
.replace('{filter}', inputSelector);
gridSettings[id] = settings;
if (settings.ajaxUpdate.length > 0) {
$(document).on('click.yiiGridView', settings.updateSelector, function () {
// Check to see if History.js is enabled for our Browser
if (settings.enableHistory && window.History.enabled) {
// Ajaxify this link
var href = $(this).attr('href');
if(href){
var url = href.split('?'),
params = $.deparam.querystring('?'+ (url[1] || ''));
delete params[settings.ajaxVar];
var updateUrl = $.param.querystring(url[0], params);
window.History.pushState({url: updateUrl}, document.title, updateUrl);
}
} else {
$('#' + id).yiiGridView('update', {url: $(this).attr('href')});
}
return false;
});
}
$(document).on('change.yiiGridView keydown.yiiGridView', settings.filterSelector, function (event) {
if (event.type === 'keydown') {
if (event.keyCode !== 13) {
return; // only react to enter key
} else {
eventType = 'keydown';
eventTarget = event.target;
}
} else {
// prevent processing for both keydown and change events on the same element
if (eventType === 'keydown' && eventTarget === event.target) {
eventType = '';
eventTarget = null;
return;
}
}
var data = $(settings.filterSelector).serialize();
if (settings.pageVar !== undefined) {
data += '&' + settings.pageVar + '=1';
}
if (settings.enableHistory && settings.ajaxUpdate !== false && window.History.enabled) {
// Ajaxify this link
var url = $('#' + id).yiiGridView('getUrl'),
params = $.deparam.querystring($.param.querystring(url, data));
delete params[settings.ajaxVar];
var updateUrl = $.param.querystring(url.substr(0, url.indexOf('?')), params);
window.History.pushState({url: updateUrl}, document.title, updateUrl);
} else {
$('#' + id).yiiGridView('update', {data: data});
}
return false;
});
if (settings.enableHistory && settings.ajaxUpdate !== false && window.History.enabled) {
$(window).bind('statechange', function() { // Note: We are using statechange instead of popstate
var State = window.History.getState(); // Note: We are using History.getState() instead of event.state
if (State.data.url === undefined) {
State.data.url = State.url;
}
$('#' + id).yiiGridView('update', State.data);
});
}
if (settings.selectableRows > 0) {
selectCheckedRows(this.id);
$(document).on('click.yiiGridView', '#' + id + ' .' + settings.tableClass + ' > tbody > tr', function (e) {
var $currentGrid, $row, isRowSelected, $checks,
$target = $(e.target);
if ($target.closest('td').is('.empty,.button-column') || (e.target.type === 'checkbox' && !$target.hasClass('select-on-check'))) {
return;
}
$row = $(this);
$currentGrid = $('#' + id);
$checks = $('input.select-on-check', $currentGrid);
isRowSelected = $row.toggleClass('selected').hasClass('selected');
if (settings.selectableRows === 1) {
$row.siblings().removeClass('selected');
$checks.prop('checked', false);
}
$('input.select-on-check', $row).prop('checked', isRowSelected);
$("input.select-on-check-all", $currentGrid).prop('checked', $checks.length === $checks.filter(':checked').length);
if (settings.selectionChanged !== undefined) {
settings.selectionChanged(id);
}
});
if (settings.selectableRows > 1) {
$(document).on('click.yiiGridView', '#' + id + ' .select-on-check-all', function () {
var $currentGrid = $('#' + id),
$checks = $('input.select-on-check', $currentGrid),
$checksAll = $('input.select-on-check-all', $currentGrid),
$rows = $currentGrid.find('.' + settings.tableClass).children('tbody').children();
if (this.checked) {
$rows.addClass('selected');
$checks.prop('checked', true);
$checksAll.prop('checked', true);
} else {
$rows.removeClass('selected');
$checks.prop('checked', false);
$checksAll.prop('checked', false);
}
if (settings.selectionChanged !== undefined) {
settings.selectionChanged(id);
}
});
}
} else {
$(document).on('click.yiiGridView', '#' + id + ' .select-on-check', false);
}
});
},
/**
* Returns the key value for the specified row
* @param row integer the row number (zero-based index)
* @return string the key value
*/
getKey: function (row) {
return this.children('.keys').children('span').eq(row).text();
},
/**
* Returns the URL that generates the grid view content.
* @return string the URL that generates the grid view content.
*/
getUrl: function () {
var sUrl = gridSettings[this.attr('id')].url;
return sUrl || this.children('.keys').attr('title');
},
/**
* Returns the jQuery collection of the cells in the specified row.
* @param row integer the row number (zero-based index)
* @return jQuery the jQuery collection of the cells in the specified row.
*/
getRow: function (row) {
var sClass = gridSettings[this.attr('id')].tableClass;
return this.find('.' + sClass).children('tbody').children('tr').eq(row).children();
},
/**
* Returns the jQuery collection of the cells in the specified column.
* @param column integer the column number (zero-based index)
* @return jQuery the jQuery collection of the cells in the specified column.
*/
getColumn: function (column) {
var sClass = gridSettings[this.attr('id')].tableClass;
return this.find('.' + sClass).children('tbody').children('tr').children('td:nth-child(' + (column + 1) + ')');
},
/**
* Performs an AJAX-based update of the grid view contents.
* @param options map the AJAX request options (see jQuery.ajax API manual). By default,
* the URL to be requested is the one that generates the current content of the grid view.
* @return object the jQuery object
*/
update: function (options) {
var customError;
if (options && options.error !== undefined) {
customError = options.error;
delete options.error;
}
return this.each(function () {
var $form,
$grid = $(this),
id = $grid.attr('id'),
settings = gridSettings[id];
options = $.extend({
type: settings.ajaxType,
url: $grid.yiiGridView('getUrl'),
success: function (data) {
var $data = $('<div>' + data + '</div>');
$.each(settings.ajaxUpdate, function (i, el) {
var updateId = '#' + el;
$(updateId).replaceWith($(updateId, $data));
});
if (settings.afterAjaxUpdate !== undefined) {
settings.afterAjaxUpdate(id, data);
}
if (settings.selectableRows > 0) {
selectCheckedRows(id);
}
},
complete: function () {
yiiXHR[id] = null;
$grid.removeClass(settings.loadingClass);
},
error: function (XHR, textStatus, errorThrown) {
var ret, err;
if (XHR.readyState === 0 || XHR.status === 0) {
return;
}
if (customError !== undefined) {
ret = customError(XHR);
if (ret !== undefined && !ret) {
return;
}
}
switch (textStatus) {
case 'timeout':
err = 'The request timed out!';
break;
case 'parsererror':
err = 'Parser error!';
break;
case 'error':
if (XHR.status && !/^\s*$/.test(XHR.status)) {
err = 'Error ' + XHR.status;
} else {
err = 'Error';
}
if (XHR.responseText && !/^\s*$/.test(XHR.responseText)) {
err = err + ': ' + XHR.responseText;
}
break;
}
if (settings.ajaxUpdateError !== undefined) {
settings.ajaxUpdateError(XHR, textStatus, errorThrown, err, id);
} else if (err) {
alert(err);
}
}
}, options || {});
if (options.type === 'GET') {
if (options.data !== undefined) {
options.url = $.param.querystring(options.url, options.data);
options.data = {};
}
} else {
if (options.data === undefined) {
options.data = {};
$.each($(settings.filterSelector).serializeArray(), function () {
options.data[this.name] = this.value;
});
}
}
if (settings.csrfTokenName && settings.csrfToken) {
if (typeof options.data=='string')
options.data+='&'+settings.csrfTokenName+'='+settings.csrfToken;
else
options.data[settings.csrfTokenName] = settings.csrfToken;
}
if(yiiXHR[id] != null){
yiiXHR[id].abort();
}
//class must be added after yiiXHR.abort otherwise ajax.error will remove it
$grid.addClass(settings.loadingClass);
if (settings.ajaxUpdate !== false) {
if(settings.ajaxVar) {
options.url = $.param.querystring(options.url, settings.ajaxVar + '=' + id);
}
if (settings.beforeAjaxUpdate !== undefined) {
settings.beforeAjaxUpdate(id, options);
}
yiiXHR[id] = $.ajax(options);
} else { // non-ajax mode
if (options.type === 'GET') {
window.location.href = options.url;
} else { // POST mode
$form = $('<form action="' + options.url + '" method="post"></form>').appendTo('body');
if (options.data === undefined) {
options.data = {};
}
if (options.data.returnUrl === undefined) {
options.data.returnUrl = window.location.href;
}
$.each(options.data, function (name, value) {
$form.append($('<input type="hidden" name="t" value="" />').attr('name', name).val(value));
});
$form.submit();
}
}
});
},
/**
* Returns the key values of the currently selected rows.
* @return array the key values of the currently selected rows.
*/
getSelection: function () {
var settings = gridSettings[this.attr('id')],
keys = this.find('.keys span'),
selection = [];
this.find('.' + settings.tableClass).children('tbody').children().each(function (i) {
if ($(this).hasClass('selected')) {
selection.push(keys.eq(i).text());
}
});
return selection;
},
/**
* Returns the key values of the currently checked rows.
* @param column_id string the ID of the column
* @return array the key values of the currently checked rows.
*/
getChecked: function (column_id) {
var settings = gridSettings[this.attr('id')],
keys = this.find('.keys span'),
checked = [];
if (column_id.substring(column_id.length - 2) !== '[]') {
column_id = column_id + '[]';
}
this.find('.' + settings.tableClass).children('tbody').children('tr').children('td').children('input[name="' + column_id + '"]').each(function (i) {
if (this.checked) {
checked.push(keys.eq(i).text());
}
});
return checked;
}
};
$.fn.yiiGridView = function (method) {
if (methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === 'object' || !method) {
return methods.init.apply(this, arguments);
} else {
$.error('Method ' + method + ' does not exist on jQuery.yiiGridView');
return false;
}
};
/******************************************************************************
*** DEPRECATED METHODS
*** used before Yii 1.1.9
******************************************************************************/
$.fn.yiiGridView.settings = gridSettings;
/**
* Returns the key value for the specified row
* @param id string the ID of the grid view container
* @param row integer the row number (zero-based index)
* @return string the key value
*/
$.fn.yiiGridView.getKey = function (id, row) {
return $('#' + id).yiiGridView('getKey', row);
};
/**
* Returns the URL that generates the grid view content.
* @param id string the ID of the grid view container
* @return string the URL that generates the grid view content.
*/
$.fn.yiiGridView.getUrl = function (id) {
return $('#' + id).yiiGridView('getUrl');
};
/**
* Returns the jQuery collection of the cells in the specified row.
* @param id string the ID of the grid view container
* @param row integer the row number (zero-based index)
* @return jQuery the jQuery collection of the cells in the specified row.
*/
$.fn.yiiGridView.getRow = function (id, row) {
return $('#' + id).yiiGridView('getRow', row);
};
/**
* Returns the jQuery collection of the cells in the specified column.
* @param id string the ID of the grid view container
* @param column integer the column number (zero-based index)
* @return jQuery the jQuery collection of the cells in the specified column.
*/
$.fn.yiiGridView.getColumn = function (id, column) {
return $('#' + id).yiiGridView('getColumn', column);
};
/**
* Performs an AJAX-based update of the grid view contents.
* @param id string the ID of the grid view container
* @param options map the AJAX request options (see jQuery.ajax API manual). By default,
* the URL to be requested is the one that generates the current content of the grid view.
*/
$.fn.yiiGridView.update = function (id, options) {
$('#' + id).yiiGridView('update', options);
};
/**
* Returns the key values of the currently selected rows.
* @param id string the ID of the grid view container
* @return array the key values of the currently selected rows.
*/
$.fn.yiiGridView.getSelection = function (id) {
return $('#' + id).yiiGridView('getSelection');
};
/**
* Returns the key values of the currently checked rows.
* @param id string the ID of the grid view container
* @param column_id string the ID of the column
* @return array the key values of the currently checked rows.
*/
$.fn.yiiGridView.getChecked = function (id, column_id) {
return $('#' + id).yiiGridView('getChecked', column_id);
};
})(jQuery);
.grid-view-loading
{
background:url(loading.gif) no-repeat;
}
.grid-view
{
padding: 15px 0;
}
.grid-view table.items
{
background: white;
border-collapse: collapse;
width: 100%;
border: 1px #D0E3EF solid;
}
.grid-view table.items th, .grid-view table.items td
{
font-size: 0.9em;
border: 1px white solid;
padding: 0.3em;
}
.grid-view table.items th
{
color: white;
background: url("bg.gif") repeat-x scroll left top white;
text-align: center;
}
.grid-view table.items th a
{
color: #EEE;
font-weight: bold;
text-decoration: none;
}
.grid-view table.items th a:hover
{
color: #FFF;
}
.grid-view table.items th a.asc
{
background:url(up.gif) right center no-repeat;
padding-right: 10px;
}
.grid-view table.items th a.desc
{
background:url(down.gif) right center no-repeat;
padding-right: 10px;
}
.grid-view table.items tr.even
{
background: #F8F8F8;
}
.grid-view table.items tr.odd
{
background: #E5F1F4;
}
.grid-view table.items tr.selected
{
background: #BCE774;
}
.grid-view table.items tr:hover.selected
{
background: #CCFF66;
}
.grid-view table.items tbody tr:hover
{
background: #ECFBD4;
}
.grid-view .link-column img
{
border: 0;
}
.grid-view .button-column
{
text-align: center;
width: 60px;
}
.grid-view .button-column img
{
border: 0;
}
.grid-view .checkbox-column
{
width: 15px;
}
.grid-view .summary
{
margin: 0 0 5px 0;
text-align: right;
}
.grid-view .pager
{
margin: 5px 0 0 0;
text-align: right;
}
.grid-view .empty
{
font-style: italic;
}
.grid-view .filters input,
.grid-view .filters select
{
width: 100%;
border: 1px solid #ccc;
}
\ No newline at end of file
/**
* jQuery Yii ListView plugin file.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.yiiframework.com/
* @copyright 2008-2010 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
;(function($) {
var yiiXHR = {};
/**
* yiiListView set function.
* @param options map settings for the list view. Availablel options are as follows:
* - ajaxUpdate: array, IDs of the containers whose content may be updated by ajax response
* - ajaxVar: string, the name of the request variable indicating the ID of the element triggering the AJAX request
* - ajaxType: string, the type (GET or POST) of the AJAX request
* - pagerClass: string, the CSS class for the pager container
* - sorterClass: string, the CSS class for the sorter container
* - updateSelector: string, the selector for choosing which elements can trigger ajax requests
* - beforeAjaxUpdate: function, the function to be called before ajax request is sent
* - afterAjaxUpdate: function, the function to be called after ajax response is received
*/
$.fn.yiiListView = function(options) {
return this.each(function(){
var settings = $.extend({}, $.fn.yiiListView.defaults, options || {}),
$this = $(this),
id = $this.attr('id');
if(settings.updateSelector == undefined) {
settings.updateSelector = '#'+id+' .'+settings.pagerClass.replace(/\s+/g,'.')+' a, #'+id+' .'+settings.sorterClass.replace(/\s+/g,'.')+' a';
}
$.fn.yiiListView.settings[id] = settings;
if(settings.ajaxUpdate.length > 0) {
$(document).on('click.yiiListView', settings.updateSelector,function(){
if(settings.enableHistory && window.History.enabled) {
var href = $(this).attr('href');
if(href){
var url = href.split('?'),
params = $.deparam.querystring('?'+ (url[1] || ''));
delete params[settings.ajaxVar];
var updateUrl = $.param.querystring(url[0], params);
window.History.pushState({url: updateUrl}, document.title, updateUrl);
}
} else {
$.fn.yiiListView.update(id, {url: $(this).attr('href')});
}
return false;
});
if(settings.enableHistory && window.History.enabled) {
$(window).bind('statechange', function() { // Note: We are using statechange instead of popstate
var State = window.History.getState(); // Note: We are using History.getState() instead of event.state
if (State.data.url === undefined) {
State.data.url = State.url;
}
$.fn.yiiListView.update(id, State.data);
});
}
}
});
};
$.fn.yiiListView.defaults = {
ajaxUpdate: [],
ajaxVar: 'ajax',
ajaxType: 'GET',
pagerClass: 'pager',
loadingClass: 'loading',
sorterClass: 'sorter'
// updateSelector: '#id .pager a, '#id .sort a',
// beforeAjaxUpdate: function(id) {},
// afterAjaxUpdate: function(id, data) {},
// url: 'ajax request URL'
};
$.fn.yiiListView.settings = {};
/**
* Returns the key value for the specified row
* @param id string the ID of the list view container
* @param index integer the zero-based index of the data item
* @return string the key value
*/
$.fn.yiiListView.getKey = function(id, index) {
return $('#'+id+' > div.keys > span:eq('+index+')').text();
};
/**
* Returns the URL that generates the list view content.
* @param id string the ID of the list view container
* @return string the URL that generates the list view content.
*/
$.fn.yiiListView.getUrl = function(id) {
var settings = $.fn.yiiListView.settings[id];
return settings.url || $('#'+id+' > div.keys').attr('title');
};
/**
* Performs an AJAX-based update of the list view contents.
* @param id string the ID of the list view container
* @param options map the AJAX request options (see jQuery.ajax API manual). By default,
* the URL to be requested is the one that generates the current content of the list view.
*/
$.fn.yiiListView.update = function(id, options) {
var customError,
settings = $.fn.yiiListView.settings[id];
if (options && options.error !== undefined) {
customError = options.error;
delete options.error;
}
options = $.extend({
type: settings.ajaxType,
url: $.fn.yiiListView.getUrl(id),
success: function(data,status) {
$.each(settings.ajaxUpdate, function(i,v) {
var id='#'+v;
$(id).replaceWith($(id,'<div>'+data+'</div>'));
});
if(settings.afterAjaxUpdate != undefined)
settings.afterAjaxUpdate(id, data);
},
complete: function() {
$('#'+id).removeClass(settings.loadingClass);
yiiXHR[id] = null;
},
error: function(XHR, textStatus, errorThrown) {
var ret, err;
if (XHR.readyState === 0 || XHR.status === 0) {
return;
}
if (customError !== undefined) {
ret = customError(XHR);
if (ret !== undefined && !ret) {
return;
}
}
switch (textStatus) {
case 'timeout':
err = 'The request timed out!';
break;
case 'parsererror':
err = 'Parser error!';
break;
case 'error':
if (XHR.status && !/^\s*$/.test(XHR.status)) {
err = 'Error ' + XHR.status;
} else {
err = 'Error';
}
if (XHR.responseText && !/^\s*$/.test(XHR.responseText)) {
err = err + ': ' + XHR.responseText;
}
break;
}
if (settings.ajaxUpdateError !== undefined) {
settings.ajaxUpdateError(XHR, textStatus, errorThrown, err, id);
} else if (err) {
alert(err);
}
}
}, options || {});
if(options.data!=undefined && options.type=='GET') {
options.url = $.param.querystring(options.url, options.data);
options.data = {};
}
if(settings.ajaxVar)
options.url = $.param.querystring(options.url, settings.ajaxVar+'='+id);
if(yiiXHR[id] != null) {
yiiXHR[id].abort();
}
$('#'+id).addClass(settings.loadingClass);
if(settings.beforeAjaxUpdate != undefined)
settings.beforeAjaxUpdate(id, options);
yiiXHR[id] = $.ajax(options);
};
})(jQuery);
.list-view-loading
{
background:url(loading.gif) no-repeat;
}
.list-view .summary
{
margin: 0 0 5px 0;
text-align: right;
}
.list-view .sorter
{
margin: 0 0 5px 0;
text-align: right;
}
.list-view .pager
{
margin: 5px 0 0 0;
text-align: right;
}
.list-view .sorter
{
font-size: 0.9em;
}
.list-view .sorter ul
{
display: inline;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0;
padding:0;
}
.list-view .sorter li
{
display: inline;
margin: 0 0 0 5px;
padding: 0;
}
.list-view .sorter a.asc
{
background:url(up.gif) right center no-repeat;
padding-right: 10px;
}
.list-view .sorter a.desc
{
background:url(down.gif) right center no-repeat;
padding-right: 10px;
}
......@@ -8,9 +8,9 @@
return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=>'Sistema Informático para Registro de Eventos y Publicaciones',
'theme'=>'classic',
'language'=>'es',
'sourceLanguage'=>'en',
'theme'=>'classic',
'charset'=>'utf-8',
// preloading 'log' component
......
......@@ -13337,3 +13337,432 @@ Stack trace:
#4 C:\xampp\htdocs\sirep-2\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#5 C:\xampp\htdocs\sirep-2\index.php(15): CWebApplication->run()
REQUEST_URI=/sirep-2/reportes/listarPublicaciones.html
2019/05/08 17:58:36 [error] [exception.CException] CException: La propiedad "Mzgteventos"."fK1_MZGTEVENTOS_INV_MZGTINSTITUCIONES_PK" no se encuentra definida. in C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CComponent.php:130
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\db\ar\CActiveRecord.php(145): CComponent->__get('fK1_MZGTEVENTOS...')
#1 C:\xampp2\htdocs\sirep\sirep\protected\controllers\ReportesController.php(23): CActiveRecord->__get('fK1_MZGTEVENTOS...')
#2 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): ReportesController->actionListarEventos()
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('listarEventos')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('reportes/listar...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#9 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#10 {main}
REQUEST_URI=/sirep/sirep/reportes/listarEventos.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:03:29 [error] [exception.CException] CException: La propiedad "Mzgteventos"."fK1_MZGTEVENTOS_INV_MZGTINSTITUCIONES_PK" no se encuentra definida. in C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CComponent.php:130
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\db\ar\CActiveRecord.php(145): CComponent->__get('fK1_MZGTEVENTOS...')
#1 C:\xampp2\htdocs\sirep\sirep\protected\controllers\ReportesController.php(23): CActiveRecord->__get('fK1_MZGTEVENTOS...')
#2 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): ReportesController->actionListarEventos()
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('listarEventos')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('reportes/listar...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#9 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#10 {main}
REQUEST_URI=/sirep/sirep/reportes/listarEventos.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgtbancoautores/admin.html
---
2019/05/08 18:03:31 [error] [exception.CException] CException: La propiedad "Mzgteventos"."fK1_MZGTEVENTOS_INV_MZGTINSTITUCIONES_PK" no se encuentra definida. in C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CComponent.php:130
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\db\ar\CActiveRecord.php(145): CComponent->__get('fK1_MZGTEVENTOS...')
#1 C:\xampp2\htdocs\sirep\sirep\protected\controllers\ReportesController.php(107): CActiveRecord->__get('fK1_MZGTEVENTOS...')
#2 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): ReportesController->actionListarEventosPorCarrera()
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('listarEventosPo...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('reportes/listar...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#9 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#10 {main}
REQUEST_URI=/sirep/sirep/reportes/listarEventosPorCarrera.html
HTTP_REFERER=http://localhost/sirep/sirep/reportes/listarEventos.html
---
2019/05/08 18:14:33 [error] [exception.CHttpException.404] CHttpException: No es posible resolver la solicitud "images/banner.jpg" in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php:286
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('images/banner.j...')
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#2 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#3 {main}
REQUEST_URI=/sirep/sirep/images/banner.jpg
HTTP_REFERER=http://localhost/sirep/sirep/site/index.html
---
2019/05/08 18:14:35 [error] [exception.CHttpException.404] CHttpException: No es posible resolver la solicitud "images/banner.jpg" in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php:286
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('images/banner.j...')
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#2 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#3 {main}
REQUEST_URI=/sirep/sirep/images/banner.jpg
HTTP_REFERER=http://localhost/sirep/sirep/site/index.html
---
2019/05/08 18:15:04 [error] [exception.CException] CException: La propiedad "Mzgteventos"."fK1_MZGTEVENTOS_INV_MZGTINSTITUCIONES_PK" no se encuentra definida. in C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CComponent.php:130
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\db\ar\CActiveRecord.php(145): CComponent->__get('fK1_MZGTEVENTOS...')
#1 C:\xampp2\htdocs\sirep\sirep\protected\controllers\ReportesController.php(23): CActiveRecord->__get('fK1_MZGTEVENTOS...')
#2 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): ReportesController->actionListarEventos()
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('listarEventos')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('reportes/listar...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#9 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#10 {main}
REQUEST_URI=/sirep/sirep/reportes/listarEventos.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgtbancoautores/create.html
---
2019/05/08 18:19:53 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:54 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:55 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:56 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:56 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:56 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:57 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:58 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:58 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:19:58 [error] [exception.Error] Error: Class '' not found in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWidgetFactory.php:147
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(146): CWidgetFactory->createWidget(Object(SiteController), '', Array)
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(181): CBaseController->createWidget('', Array)
#2 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\main.php(105): CBaseController->widget('', Array)
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(76): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\CContentDecorator.php(54): CContentDecorator->decorate('<div id="conten...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\widgets\COutputProcessor.php(44): CContentDecorator->processOutput('<div id="conten...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(215): COutputProcessor->run()
#9 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(309): CBaseController->endWidget('CContentDecorat...')
#10 C:\xampp2\htdocs\sirep\sirep\themes\classic\views\layouts\column1.php(6): CBaseController->endContent()
#11 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(126): require('C:\\xampp2\\htdoc...')
#12 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CBaseController.php(95): CBaseController->renderInternal('C:\\xampp2\\htdoc...', Array, true)
#13 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(787): CBaseController->renderFile('C:\\xampp2\\htdoc...', Array, true)
#14 C:\xampp2\htdocs\sirep\sirep\protected\controllers\SiteController.php(32): CController->render('index')
#15 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): SiteController->actionIndex()
#16 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#17 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#18 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#19 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('index')
#20 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('site/index')
#21 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#22 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#23 {main}
REQUEST_URI=/sirep/sirep/site/index.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
2019/05/08 18:36:55 [error] [exception.CException] CException: La propiedad "Mzgteventos"."fK1_MZGTEVENTOS_INV_MZGTINSTITUCIONES_PK" no se encuentra definida. in C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CComponent.php:130
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\db\ar\CActiveRecord.php(145): CComponent->__get('fK1_MZGTEVENTOS...')
#1 C:\xampp2\htdocs\sirep\sirep\protected\controllers\ReportesController.php(23): CActiveRecord->__get('fK1_MZGTEVENTOS...')
#2 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): ReportesController->actionListarEventos()
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('listarEventos')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('reportes/listar...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#9 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#10 {main}
REQUEST_URI=/sirep/sirep/reportes/listarEventos.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgtbancoautores/create.html
---
2019/05/08 18:43:58 [error] [exception.CException] CException: La propiedad "Mzgteventos"."fK1_MZGTEVENTOS_INV_MZGTINSTITUCIONES_PK" no se encuentra definida. in C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CComponent.php:130
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\db\ar\CActiveRecord.php(145): CComponent->__get('fK1_MZGTEVENTOS...')
#1 C:\xampp2\htdocs\sirep\sirep\protected\controllers\ReportesController.php(23): CActiveRecord->__get('fK1_MZGTEVENTOS...')
#2 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): ReportesController->actionListarEventos()
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('listarEventos')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('reportes/listar...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#9 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#10 {main}
REQUEST_URI=/sirep/sirep/reportes/listarEventos.html
HTTP_REFERER=http://localhost/sirep/sirep/mzgtbancoautores/create.html
---
2019/05/08 18:44:00 [error] [exception.CException] CException: La propiedad "Mzgteventos"."fK1_MZGTEVENTOS_INV_MZGTINSTITUCIONES_PK" no se encuentra definida. in C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CComponent.php:130
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\db\ar\CActiveRecord.php(145): CComponent->__get('fK1_MZGTEVENTOS...')
#1 C:\xampp2\htdocs\sirep\sirep\protected\controllers\ReportesController.php(107): CActiveRecord->__get('fK1_MZGTEVENTOS...')
#2 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\actions\CInlineAction.php(49): ReportesController->actionListarEventosPorCarrera()
#3 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(308): CInlineAction->runWithParams(Array)
#4 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(286): CController->runAction(Object(CInlineAction))
#5 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CController.php(265): CController->runActionWithFilters(Object(CInlineAction), Array)
#6 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(282): CController->run('listarEventosPo...')
#7 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('reportes/listar...')
#8 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#9 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#10 {main}
REQUEST_URI=/sirep/sirep/reportes/listarEventosPorCarrera.html
HTTP_REFERER=http://localhost/sirep/sirep/reportes/listarEventos.html
---
2019/05/08 18:50:29 [error] [exception.CHttpException.404] CHttpException: No es posible resolver la solicitud "images/banner.jpg" in C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php:286
Stack trace:
#0 C:\xampp2\htdocs\sirep\sirep\yii\framework\web\CWebApplication.php(141): CWebApplication->runController('images/banner.j...')
#1 C:\xampp2\htdocs\sirep\sirep\yii\framework\base\CApplication.php(185): CWebApplication->processRequest()
#2 C:\xampp2\htdocs\sirep\sirep\index.php(15): CApplication->run()
#3 {main}
REQUEST_URI=/sirep/sirep/images/banner.jpg
HTTP_REFERER=http://localhost/sirep/sirep/mzgteventos/create.html
---
<?php /* @var $this Controller */ ?>
<?php $this->beginContent('//layouts/main'); ?>
<table>
<tr>
<td>
<div class="content">
<div id="content">
<?php echo $content; ?>
</div><!-- content -->
<div class="container">
<div class="row-fluid">
<div class="span12">
<?php
$this->widget('zii.widgets.CMenu', array(
'items' => $this->menu,
'htmlOptions' => array('class' =>'nav nav-pills'),
));
?>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<?php echo $content; ?>
</div>
</td>
<td>
<div class="span-5 last">
<div id="sidebar">
<?php
$this->beginWidget('zii.widgets.CPortlet', array(
'title'=>'Operaciones',
));
$this->widget('zii.widgets.CMenu', array(
'items'=>$this->menu,
'htmlOptions'=>array('class'=>'operations'),
));
$this->endWidget();
?>
</div><!-- sidebar -->
</div>
</td>
</tr>
</table>
<?php $this->endContent();
\ No newline at end of file
</div>
</div>
<?php $this->endContent();
......@@ -11,7 +11,8 @@
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/ie.css" media="screen, projection">
<![endif]-->
<link href="<?php echo Yii::app()->theme->baseUrl;?>/css/bootstrap.min.css" rel="stylesheet">
<link href="<?php echo Yii::app()->theme->baseUrl;?>/css/responsive.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/main.css">
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/form.css">
......@@ -21,7 +22,7 @@
<body>
<div class="container" id="page">
<div id="header" style="background-image:url(/sirep/images/banner.jpg)" style="background-attachment: fixed; background-position:center;">
<div id="logo"><?php echo CHtml::encode(Yii::app()->name); ?></div>
</div><!-- header -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment