Revisions for midas/lib/Midas.php

Location: [ Horde ] / midas / lib / Midas.php View: Logs | Branches | Statistics
Search Revisions:
Show diffs between and
Show Differences shows diffs to the previous revision. If you select a revision by clicking its row, Show Differences will show the differences to the selected row.
 
  Revision Date Author Log Message
1.44 (+2 -2 lines) 03/02/2006 04:57 AM Jan Schneider jan

Add support for flash banners.

1.43 (+2 -2 lines) 02/09/2006 11:00 AM Jan Schneider jan

Add support for Google AdSense ads (ctroup@uwo.ca, Request #2928).

1.42 (+2 -3 lines) 02/09/2006 07:49 AM Jan Schneider jan

Don't create unnecessary variable.

1.41 (+2 -2 lines) 02/08/2006 11:33 AM Jan Schneider jan

No prefs yet.

1.40 (+2 -2 lines) 02/08/2006 11:26 AM Jan Schneider jan

This page creates a new campaign, not a new ad.

1.39 (+2 -2 lines) 02/08/2006 11:25 AM Jan Schneider jan

access key

1.38 (+5 -5 lines) 01/26/2006 05:51 AM Chuck Hagenbuch chuck

HTML cleanup, escaping, etc.

1.37 (+1 -3 lines) 07/02/2005 10:57 PM Matt Selsky selsky

"@access public" is redundant.
Wrapping.
Use proper types in phpdoc.
Specify "@access private" correctly in phpdoc.

1.36 (+3 -1 lines) 05/11/2005 12:58 AM Matt Selsky selsky

Add @package tags.

1.35 (+36 -1 lines) 11/21/2004 05:32 PM Chuck Hagenbuch chuck

New menu.

Submitted by: Roel Gloudemans <roel@gloudemans.info>

1.34 (+4 -8 lines) 09/09/2004 12:27 AM Chuck Hagenbuch chuck

I got sick of seeing "needs to be fixed" in my portal, so here it is,
a working summary block. Also cleaned up various other bits of Midas
that I touched while I was at it.

1.33 (+11 -1 lines) 08/29/2003 08:14 AM mdjukic

function to fix array for rendering a campaign in view

1.32 (+4 -1 lines) 08/27/2003 11:09 AM Chuck Hagenbuch chuck

Fix showing of ads. I can't upload image ads, but text ads work. I had
to re-add a bunch of functions that had disappeared, and click.php,
ad.php, and adjs.php all referred to non-existant variables and
functions.

This makes text add work via javascript, too.

1.31 (+2 -264 lines) 08/26/2003 05:12 PM mdjukic

clean up, move everything to the driver libs

1.30 (+3 -4 lines) 08/23/2003 03:34 PM Jan Schneider jan

Consider Horde's driver settings.

1.29 (+7 -1 lines) 08/23/2003 02:52 PM mdjukic

ad types

1.28 (+1 -6 lines) 08/23/2003 01:32 PM Chuck Hagenbuch chuck

this isn't needed.

1.27 (+2 -2 lines) 06/19/2003 02:47 PM Chuck Hagenbuch chuck

LOG_* constants -> PEAR_LOG_*

1.26 (+49 -2 lines) 03/03/2003 02:10 PM Chuck Hagenbuch chuck

Nuke a lot of constants.php files.

Specific Reason: constants should be defined in the application's base
class file UNLESS constants are needed in one of the configuration
files (the case for all those remaining). Only then should you break
things out to a seperate file (and even then, we may want to just
include the app's library file).

General Reason: Including files is *very* expensive. Short files are
pointless if we can avoid them; it's much cheaper to have slightly
longer files than multiple short ones (especially when we're going to
include all the short files anyways).

1.25 (+1 -27 lines) 02/21/2003 08:58 PM Chuck Hagenbuch chuck

[cjh] Move Midas' summary to a Horde_Block.
[cjh] Clean up permissions checking.

1.24 (+15 -12 lines) 01/23/2003 05:05 PM Chuck Hagenbuch chuck

- Cleanup
- don't require auth on ad viewing scripts
- let adjs.php use keywords to restrict the ad shown
- add an input box to test.php to try out keywords

1.23 (+3 -3 lines) 01/16/2003 04:41 AM mdjukic

missing return of html

1.22 (+8 -9 lines) 01/15/2003 01:15 AM Chuck Hagenbuch chuck

Midas cleanup

- editing campaigns should work now
- html tweaks and cleanup
- uploading images should be saner now.

1.21 (+5 -3 lines) 01/12/2003 11:45 PM mdjukic

more rewrite, better use of Horde_Form, edit of campaigns is still broken, manage.php needs some cleaning up regarding editing

1.20 (+11 -2 lines) 01/12/2003 03:52 AM mdjukic

- Add some comments
- Add error checking for when there are no active ads in the database, in which case a text message is returned saying that there are no ads available. (How about a graphic instead of bland text? or how about Notification.php to return html to echo elsewhere rather than Notification.php echoing the stuff itself?)

1.19 (+10 -5 lines) 01/12/2003 02:14 AM mdjukic

Add an edit(), delete() and close() campaign functions.

1.18 (+2 -2 lines) 01/10/2003 12:20 AM Chuck Hagenbuch chuck

- Remove uniqid() calls (Jon Knepher <jbk@wild-e.com>)
- Replace rand() with mt_rand() (faster and usually more random)

1.17 (+27 -15 lines) 01/09/2003 10:20 PM mdjukic

setting up the basics for giving other users permissions to access midas, veiw/edit/delete ads

1.16 (+4 -5 lines) 01/09/2003 12:33 AM Chuck Hagenbuch chuck

- minor style
- return the campaign_id when saving
- make sure that new campaigns are displayed without errors.

1.15 (+23 -9 lines) 01/08/2003 07:07 AM mdjukic

add basic keyword matching through the api. when passed a block of text to filter, midas will match it against any keywords in the campaigns database. campaigns which have matching keywords will then be used to select random

1.14 (+24 -9 lines) 01/08/2003 06:38 AM mdjukic

adding an api file to call midas from within horde

1.13 (+31 -46 lines) 01/07/2003 10:12 PM mdjukic

more cleaning, add campaign detail view, compliance with setting up Horde urls

1.12 (+61 -3 lines) 01/07/2003 07:40 AM mdjukic

big clean up of presentation of summaries/stats and moving midas to use horde_forms

1.11 (+3 -3 lines) 12/27/2002 10:12 AM mdjukic

adding date start/stop function to the ads, splitting up the summary accordingly and cleaning up the sql a bit

1.10 (+2 -3 lines) 12/12/2002 03:00 PM Chuck Hagenbuch chuck

minor tweaks

1.9 (+3 -9 lines) 11/18/2002 12:13 PM Chuck Hagenbuch chuck

- make some comment fields not required in Whups
- fix some problems in Hermes
- change how multienums are handled - don't need [] in the name anymore
  ([] now is ONLY used for the row renderer)
- add category to the whups search form.
- add the ability to assign tickets to someone on ticket creation.

1.8 (+2 -2 lines) 10/30/2002 02:53 AM mdjukic

set target window new

1.7 (+14 -4 lines) 10/30/2002 02:39 AM mdjukic

ad click throughs

1.6 (+26 -1 lines) 10/30/2002 02:03 AM mdjukic

adding js as default method for setting up ads, setting up click.php for following through with the clicks

1.5 (+2 -2 lines) 10/21/2002 04:35 PM mdjukic

chaning the name of the random ad function

1.4 (+2 -5 lines) 10/21/2002 04:31 PM mdjukic

reworking the random ad picking

1.3 (+19 -3 lines) 10/21/2002 04:17 PM mdjukic

updating

1.2 (+6 -1 lines) 10/21/2002 08:36 AM mdjukic

cleaning, campaign deletion

1.1.1.1 (+0 -0 lines) 10/14/2002 07:40 PM mdjukic

first import

Tags: import

1.1 10/14/2002 07:40 PM mdjukic

Initial revision